js中indexof是什么意思(附js中indexof的用法例子)
1、indexof定义和用法
indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置。
2、indexof语法
stringObject.indexOf(searchvalue,fromindex)
参数描述searchvalue必需。规定需检索的字符串值。fromindex
可选的整数参数。
规定在字符串中开始检索的位置。
它的合法取值是 0 到 stringObject.length - 1。
如省略该参数,则将从字符串的首字符开始检索。
3、说明
该方法将从头到尾地检索字符串 stringObject,看它是否含有子串 searchvalue。开始检索的位置在字符串的 fromindex 处或字符串的开头(没有指定 fromindex 时)。如果找到一个 searchvalue,则返回 searchvalue 的第一次出现的位置。stringObject 中的字符位置是从 0 开始的。
4、提示和注释
注释:indexOf() 方法对大小写敏感!
注释:如果要检索的字符串值没有出现,则该方法返回 -1。
5、js中indexof的用法例子,实例代码如下:
在本例中,我们将在 "Hello world!" 字符串内进行不同的检索:
<script type="text/javascript"> var str="Hello world!" document.write(str.indexOf("Hello") + "<br />") document.write(str.indexOf("World") + "<br />") document.write(str.indexOf("world")) </script>
以上代码的输出:
0 -1 6 TIY
indexOf()
如何使用 indexOf() 在字符串内进行检索。
if (whiteList.indexOf(to.path) !== -1) { // 在免登录白名单,直接进入 next() } else { next(`/login?redirect=${to.path}`) // 否则全部重定向到登录页 NProgress.done() } }
除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址:https://tangjiusheng.cn/js/568.html
原文地址:https://tangjiusheng.cn/js/568.html