语法stringObject.indexOf(searchvalue,fromindex)参数描述searchvalue必需。
规定需检索的字符串值。
fromindex可选的整数参数。
规定在字符串中开始检索的位置。
它的合法取值是 0 到 stringObject.length – 1。
如省略该参数,则将从字符串的首字符开始检索。
说明该方法将从头到尾地检索字符串 stringObject,看它是否含有子串 searchvalue。
开始检索的位置在字符串的 fromindex 处或字符串的开头(没有指定 fromindex 时)。
如果找到一个 searchvalue,则返回 searchvalue 的第一次出现的位置。
stringObject 中的字符位置是从 0 开始的。
提示和注释注释:indexOf() 方法对大小写敏感!注释:如果要检索的字符串值没有出现,则该方法返回 -1。
实例在本例中,我们将在 “Hello world!” 字符串内进行不同的检索:<scripttype="text/javascript">varstr="Helloworld!"document.write(str.indexOf("Hello")+"<br/>")document.write(str.indexOf("World")+"<br/>")document.write(str.indexOf("world"))</script>以上代码的输出:0-16TIYindexOf()如何使用 indexOf() 在字符串内进行检索。
if (whiteList.indexOf(to.path) !== -1) {// 在免登录白名单,直接进入next()} else {next(`/login?redirect=${to.path}`) // 否则全部重定向到登录页NProgress.done()}}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)