테스트 사이트 - 개발 중인 베타 버전입니다

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

· 8년 전 · 1740

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>

댓글 작성

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

로그인하기

게시글 목록

번호 제목
16019
16015
16014
16013
16011
16010
16009
16008
16004
16003
16002
16001
15993
15992
15991
15988
15987
15986
15985
15981
15980
15979
15978
15977
15976
15975
15974
15973
15971
15970