클릭 한 범위에서 jQuery 함수로 "this"를 전달한 다음 클릭 한 요소의 첫 번째 자식에서 jQuery를 실행할 수 있습니다. 제대로 이해하지 못하는 것 같습니다 ...
<p onclick="toggleSection($(this));"><span class="redClass"></span></p>
자바 스크립트 :
function toggleSection(element) {
element.toggleClass("redClass");
}
: first-child of element를 어떻게 참조합니까?
jQuery(document).ready(...)
합니까?