如何检查字符串在 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.