jQuery 자식 ID로 선택

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:53 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

nested ID in jQuery selector
jQuery 자식 ID로 선택

1 방법[ | ]

$('#부모아이디 #자식아이디')

2 예시[ | ]

<!DOCTYPE html>
<meta charset='utf-8' />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
	$("#test").click(function() {
		var myvalue = $("#div1 #jmnote").attr("value");
		alert("'#div1 #jmnote'의 value는 ["+myvalue+"]입니다.");
	});
});
</script>
<div id='div1'>
<input type='text' id='jmnote' value='apple' />
<input type='button' id='test' value='자식 ID로 선택 테스트' />
</form>

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}