본문 바로가기
javascript, jQuery/jQuery

[jQuery] 제이쿼리로 id값 받기

by drCode 2021. 4. 15.
728x90
반응형

 

$(document).ready(function() {
	$("li").click(function() {
    	var id = $(this).children("a").attr("id");
    });
});
<li><a href="#" id="a_first">첫번째</a></li>
<li><a href="#" id="a_second">두번째</a></li>

 

728x90
반응형

댓글