jQuery input name으로 선택

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

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

²==예제 소스==

<input type='text' name='hello' value='world' />
<button id='test'>이름으로 선택 테스트</button>

<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$("#test").click(function() {
  alert( $("input[name={{hello}}{{{{}}}}]").attr("value") );
});
</script>
→ 버튼을 누르면 hello라는 이름을 가진 input text의 value인 world이 출력된다.

같이 보기[ | ]

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