"JQuery input name으로 선택"의 두 판 사이의 차이

잔글 (Jmnote 사용자가 JQuery name으로 선택 문서를 JQuery input name으로 선택 문서로 옮겼습니다)
잔글 (로봇: 자동으로 텍스트 교체 (-http://jmnote.com/jq/ +http://zetawiki.com/jq/))
22번째 줄: 22번째 줄:
</source>
</source>
:→ 버튼을 누르면 jmnote라는 이름을 가진 input text의 value인 apple이 출력된다.
:→ 버튼을 누르면 jmnote라는 이름을 가진 input text의 value인 apple이 출력된다.
*예제: http://jmnote.com/jq/by_name.php
*예제: http://zetawiki.com/jq/by_name.php


==같이 보기==
==같이 보기==

2015년 6월 17일 (수) 01:36 판

jQuery getElementById
jQuery 이름으로 찾기
jQuery name으로 핸들 얻기
jQuery 폼 요소 이름으로 선택

1 예제 소스

<!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 = $("input[name=jmnote]").attr("value");
		alert( myvalue );
	});
});
</script>
<input type='text' name='jmnote' value='apple' />
<input type='button' id='test' value='이름으로 선택 테스트' />
→ 버튼을 누르면 jmnote라는 이름을 가진 input text의 value인 apple이 출력된다.

2 같이 보기

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