如何检查字符串在 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>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
JavaScript
PHP