57: jQuery intro

jk·2024년 3월 25일
0

kdt 풀스택

목록 보기
99/127



1.제이쿼리에 대하여 설명하시오.

  • Simpler than JavaScript
  • DOM in cross browser
  • It can build new frameworks
  • CSS style
  • A lot of libraries



2.window.onload 와 document.ready 의 차이는?

  • window.onload replaces but document.ready adds.



3.아래의 함수의 차이는?

.text("Hello world!");
.html("Hello world!");
  • html doesnt show the tag in the string but text does.



4. jquery 에서 객체의 이동과, 카피 하는 방법에 대하여 설명하시오.

  • move to first place : prepend, before, insertbefore
  • move to last place : append, after, insertAfter
  • copy : clone



5. jquery 에서 아래의 함수에 대하여 설명하시오.

  • .html() / text() : add string in the element
  • .remove() : remove the element
  • .empty() : empty the element
  • .attr() : set the attribute
  • .each() : loop for the elements
  • .appendTo() : become child of the element
  • .prepend() : have child in first position
  • .insertAfter() : insert after the parameter
profile
Brave but clumsy

0개의 댓글