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