jQuery ( ": contains (text)")

· 2017-08-20 (일) 16:00:55 · 3047

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>

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

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
jQuery 17-08-27 조회 2,065
jQuery 17-08-27 조회 2,199
jQuery 17-08-25 조회 2,052
jQuery 17-08-25 조회 2,082
jQuery 17-08-25 조회 2,286
jQuery 17-08-24 조회 1,803
jQuery 17-08-24 조회 2,582
jQuery 17-08-24 조회 2,023
jQuery 17-08-23 조회 2,239
jQuery 17-08-23 조회 2,257
jQuery 17-08-23 조회 2,483
jQuery 17-08-22 조회 2,423
jQuery 17-08-22 조회 1,919
jQuery
[jQuery]
17-08-22 조회 2,397
PHP 17-08-21 조회 7,406
jQuery 17-08-20 조회 3,048
jQuery 17-08-20 조회 2,064
jQuery 17-08-20 조회 2,126
jQuery 17-08-18 조회 2,266
jQuery 17-08-18 조회 1,743
jQuery 17-08-18 조회 2,354
jQuery 17-08-17 조회 2,105
jQuery 17-08-17 조회 2,310
jQuery 17-08-17 조회 2,432
jQuery 17-08-16 조회 2,041
jQuery 17-08-16 조회 2,055
jQuery 17-08-16 조회 2,018
jQuery 17-08-15 조회 1,705
jQuery 17-08-15 조회 1,869
jQuery 17-08-15 조회 1,884