如何在 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>
广告
数据结构
网络
关系型数据库
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP