제이쿼리 Attribute Ends With Selector [name$=”value”]

· 2017-08-07 (월) 12:33:04 · 2182

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


설명 : 주어진 문자열로 정확히 끝나는 값으로 지정된 속성을 갖는 요소를 선택합니다. 비교는 대소 문자를 구분합니다.


예:

속성 이름이 'letter'로 끝나고 텍스트를 입력하는 모든 입력을 찾습니다.


<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>attributeEndsWith demo</title>

  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>

</head>

<body>

 

<input name="newsletter">

<input name="milkman">

<input name="jobletter">

 

<script>

$( "input[name$='letter']" ).val( "a letter" );

</script>

 

</body>

</html>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 17-08-11 조회 1,804
jQuery 17-08-11 조회 2,693
jQuery 17-08-11 조회 2,178
PHP 17-08-10 조회 4,217
jQuery 17-08-10 조회 2,072
jQuery 17-08-10 조회 2,360
jQuery 17-08-10 조회 2,212
jQuery 17-08-09 조회 1,960
jQuery 17-08-09 조회 2,657
jQuery 17-08-09 조회 2,181
jQuery 17-08-08 조회 2,504
jQuery 17-08-08 조회 2,252
jQuery 17-08-08 조회 2,505
jQuery 17-08-07 조회 2,183
jQuery 17-08-07 조회 1,999
jQuery 17-08-07 조회 1,804
jQuery 17-08-06 조회 2,206
jQuery 17-08-06 조회 2,843
jQuery 17-08-06 조회 1,867
jQuery 17-08-04 조회 2,263
jQuery 17-08-04 조회 2,237
jQuery 17-08-04 조회 3,080
jQuery 17-08-03 조회 2,546
jQuery 17-08-03 조회 2,432
jQuery 17-08-03 조회 2,423
jQuery 17-08-02 조회 2,174
jQuery 17-08-02 조회 1,551
jQuery 17-08-02 조회 2,245
jQuery 17-08-01 조회 2,980
jQuery 17-08-01 조회 2,877