(Overview 04) QUIZ

SoloLearn jQuery 번역


QUIZ

  • Type in the symbol used to access jQuery.
    • jQuery에 액세스하는 데 사용되는 기호를 입력해라.

$


  • Fill in the blanks to run the jQuery manipulations as soon as the document is loaded.
    • document가 로딩된 후 jQuery 코드를 실행해라.
$(function() {
  // jQuery 코드
});


  • Fill in the blanks to select the paragraph from the following HTML: <p id="test"></p>
    • <p id="test"></p>에서 p 태그를 선택해라.
$("#test")


  • Which of the following selects all h1 and h2 elements?
    • 모든 h1 element와 h2 element를 선택하는 것은 무엇인가?
$("h1, h2")


  • Fill in the blanks to select all <p> elements, that are children of the element with id=”demo”.
    • id=”demo” element의 자식인 모든 <p> element를 선택해라.
$("#demo p")