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

· 8년 전 · 1944

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>

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

개발자팁

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

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 1,631
jQuery 8년 전 조회 1,546
jQuery 8년 전 조회 2,434
jQuery 8년 전 조회 1,934
PHP 8년 전 조회 3,971
jQuery 8년 전 조회 1,822
jQuery 8년 전 조회 2,114
jQuery 8년 전 조회 1,957
jQuery 8년 전 조회 1,715
jQuery 8년 전 조회 2,387
jQuery 8년 전 조회 1,927
jQuery 8년 전 조회 2,246
jQuery 8년 전 조회 2,034
jQuery 8년 전 조회 2,259
jQuery 8년 전 조회 1,945
jQuery 8년 전 조회 1,726
jQuery 8년 전 조회 1,552
jQuery 8년 전 조회 1,974
jQuery 8년 전 조회 2,599
jQuery 8년 전 조회 1,606
jQuery 8년 전 조회 2,010
jQuery 8년 전 조회 1,994
jQuery 8년 전 조회 2,793
jQuery 8년 전 조회 2,271
jQuery 8년 전 조회 2,173
jQuery 8년 전 조회 2,148
jQuery 8년 전 조회 1,902
jQuery 8년 전 조회 1,283
jQuery 8년 전 조회 1,970
jQuery 8년 전 조회 2,714