Selectors/API/jQuery
:contains(text)
引数で渡された文字列を含む要素を抽出します。
サンプル
サンプル1
“John”という文字列を含むdiv要素を下線付きにします。
<div>John Resig</div> <div>George Martin</div> <div>Malcom John Sinclair</div> <div>J. Ohn</div>
$("div:contains('John')").css("text-decoration", "underline");
[全コードを表示]
[実行結果を単体で表示]