Web/jQuery

jQuery 태그의 name이 특정 문자가 들어간 태그 핸들링

saltdoll 2017. 9. 13. 07:13
반응형

Attribute Ends With Selector [name$=”value”]

letter라는 이름으로 되어 있는 Element들을 값을 변경하기

(dir *ABC 할때, 1ABC, 3ABC 가 검색되듯이 letter가 들어가 요소 select)

<input name="newsletter"> <input name="milkman"> <input name="jobletter">

<script>
$("input[name$='letter']").val("a letter");
</script>

다음과 같이 표시된다.


https://api.jquery.com/attribute-ends-with-selector/

반응형
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)