jQuery ( ": contains (text)")

· 8년 전 · 2746

jQuery ( ": contains (text)")


설명 : 지정된 텍스트를 포함하는 모든 요소를 ​​선택하십시오.


text : 찾으려는 텍스트의 문자열. 대소 문자를 구별합니다.


일치하는 텍스트는 선택한 요소 내에서, 해당 요소의 자손 중 하나에서 또는 그 조합으로 직접 나타날 수 있습니다. 속성 값 선택자와 마찬가지로 괄호 안의 텍스트 :contains()는 맨 따옴표로 쓰거나 따옴표로 묶을 수 있습니다. 텍스트의 대소 문자를 선택해야합니다.


예:

"John"이 포함 된 모든 div를 찾아 밑줄을 긋습니다.


<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>contains demo</title>

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

</head>

<body>

 

<div>John Resig</div>

<div>George Martin</div>

<div>Malcom John Sinclair</div>

<div>J. Ohn</div>

 

<script>

$( "div:contains('John')" ).css( "text-decoration", "underline" );

</script>

 

</body>

</html>

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

개발자팁

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

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 1,892
jQuery 8년 전 조회 1,780
jQuery 8년 전 조회 1,802
jQuery 8년 전 조회 1,997
jQuery 8년 전 조회 1,497
jQuery 8년 전 조회 2,282
jQuery 8년 전 조회 1,739
jQuery 8년 전 조회 1,923
jQuery 8년 전 조회 1,934
jQuery 8년 전 조회 2,200
jQuery 8년 전 조회 2,138
jQuery 8년 전 조회 1,643
jQuery
[jQuery]
8년 전 조회 2,114
PHP 8년 전 조회 7,118
jQuery 8년 전 조회 2,747
jQuery 8년 전 조회 1,782
jQuery 8년 전 조회 1,862
jQuery 8년 전 조회 1,977
jQuery 8년 전 조회 1,482
jQuery 8년 전 조회 2,062
jQuery 8년 전 조회 1,821
jQuery 8년 전 조회 2,024
jQuery 8년 전 조회 2,149
jQuery 8년 전 조회 1,771
jQuery 8년 전 조회 1,792
jQuery 8년 전 조회 1,739
jQuery 8년 전 조회 1,424
jQuery 8년 전 조회 1,568
jQuery 8년 전 조회 1,604
jQuery 8년 전 조회 1,518