扫码一下
查看教程更方便
includes 方法用于判断字符串是否包含指定的子字符串。
如果找到匹配的字符串则返回 true,否则返回 false。
注意: includes() 方法区分大小写。
语法如下:
string.includes(searchvalue, start)
如果找到匹配的字符串返回 true,否则返回 false。
所有主流浏览器都支持 includes 方法。
<html>
<head>
<title>JavaScript String Method</title>
</head>
<body>
<p>点击按钮查看是否包含要查找的字符串,找到的话返回 true,否则返回 false。</p>
<button onclick="myFunction()">点我</button>
<p id="demo"></p>
<p><strong>注意:</strong> IE 11 及更早版本不支持 includes() 方法 。</p>
<script>
function myFunction() {
var str = "Hello world, welcome to the Runoob.";
var n = str.includes("world", 12);
document.getElementById("demo").innerHTML = n;
}
</script>
</body>
</html>
输出结果:
false