- jQuery getElementById
- jQuery 이름으로 찾기
- jQuery name으로 핸들 얻기
- jQuery 폼 요소 이름으로 선택
1 예제 소스
html
Copy
<!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() {
alert($("input[name=jmnote]").attr("value"));
});
});
</script>
<form name='my_form'>
<input type='text' name='jmnote' value='apple' />
<input type='button' id='test' value='이름으로 찾기 테스트' />
<br/>
</form>
→버튼을 누르면 jmnote라는 이름을 가진 input text의 value인 apple이 출력된다.
2 같이 보기
- jQuery 형식에 따라 폼 요소 선택
- jQuery ID로 찾기 (jQuery getElementById)
- jQuery 셀렉터
편집자 Jmnote bot Jmnote 58.181.59.5 61.105.26.164
로그인하시면 댓글을 쓸 수 있습니다.