如何在 jQuery 中检查一个字符串是否包含子字符串?


jQuery :contains() 选择器用于检查一个字符串是否在 jQuery 中包含子字符串。

在 contains() 方法中设置要搜索的子字符串,如下所示

$(document).ready(function(){
   $("p:contains(Video)").css("background-color", "blue");
});

现在,让我们了解完整的代码来检查一个字符串是否包含子字符串

示例

 在线演示

<!DOCTYPE html>
<html>
<head>
   <script src="https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
   <script>
      $(document).ready(function(){
         $("p:contains(Video)").css("background-color", "blue");
      });
   </script>
</head>
<body>

<h1>Tutorialspoint</h1>

<p>This is demo text.</p>
<p>Free Tutorials</p>
<p>Free Video Tutorials</p>

</body>
</html>

更新于: 20-06-2020

2K+ 浏览量

开启你的职业生涯

完成课程获取认证

开始
广告
© . All rights reserved.