- jQuery 教程
- jQuery - 首页
- jQuery - 路线图
- jQuery - 概述
- jQuery - 基础
- jQuery - 语法
- jQuery - 选择器
- jQuery - 事件
- jQuery - 属性
- jQuery - AJAX
- jQuery DOM 操作
- jQuery - DOM
- jQuery - 添加元素
- jQuery - 删除元素
- jQuery - 替换元素
- jQuery CSS 操作
- jQuery - CSS 类
- jQuery - 尺寸
- jQuery - CSS 属性
- jQuery 效果
- jQuery - 效果
- jQuery - 动画
- jQuery - 链式操作
- jQuery - 回调函数
- jQuery 遍历
- jQuery - 遍历
- jQuery - 遍历祖先元素
- jQuery - 遍历子孙元素
- jQuery UI
- jQuery - 交互
- jQuery - 小部件
- jQuery - 主题
- jQuery 参考
- jQuery - 选择器
- jQuery - 事件
- jQuery - 效果
- jQuery - HTML/CSS
- jQuery - 遍历
- jQuery - 其他
- jQuery - 属性
- jQuery - 工具函数
- jQuery 插件
- jQuery - 插件
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
- jQuery 有用资源
- jQuery - 问答
- jQuery - 快速指南
- jQuery - 有用资源
- jQuery - 讨论
jQuery :contains() 选择器
jQuery 中的:contains() 选择器用于选择包含指定文本字符串的元素。要匹配的文本是区分大小写的,这意味着“Hello”和“hello”不被认为是相同的。它选择在其内容中的任何位置包含指定文本的元素,包括子元素。
语法
以下是 jQuery 中 :contains 选择器的语法:
$(":contains(text)")
参数
“text” 是要在元素中搜索的字符串。此字符串区分大小写。
示例 1
在下面的示例中,我们使用 :contains 选择器来突出显示包含单词“Tutorialspoint”的段落:
<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p:contains('Tutorialspoint')").css("background-color", "yellow"); }); </script> </head> <body> <p>Tutorialspoint.</p> <p>This one will not be highlighted.</p> <p>Tutorialspoint.</p> </body> </html>
执行上述程序后,所有包含“Tutorialspoint”单词的<p>元素都将以黄色背景突出显示。
示例 2
在此示例中,我们选择包含特定文本“item”的“列表项”:
<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("li:contains('item')").css("background-color", "yellow"); }); </script> </head> <body> <ul> <li>This is the first item.</li> <li>Another list item.</li> <li>This will not change (background-color will not be added).</li> <li>Final item in the list.</li> </ul> </body> </html>
执行上述程序后,所有包含单词“item”的列表项都将以黄色背景突出显示。
示例 3
在此示例中,我们选择包含文本“Tutorialspoint”的<div>元素:
<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("div:contains('Tutorialspoint')").css("font-weight", "bold"); }); </script> </head> <body> <div>I work in Tutorialspoint.</div> <div>This will not be bold.</div> <div>Tutorialspoint is in Hyderabad.</div> </body> </html>
执行上述程序后,包含文本“Tutorialspoint”的<div>元素将以黄色背景突出显示。
jquery_ref_selectors.htm
广告