js中,indexOf()substring()和substr()的区别
Posted 记忆中的那条路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中,indexOf()substring()和substr()的区别相关的知识,希望对你有一定的参考价值。
1. indexOf() 返回指定的字符串在字符串首次出现的位置。
比如 var str="Hello world!"
document.write(str.indexOf("llo")); 返回结果是2。
2 . subtring( start, end ) 左闭右开 end可以省略
3. substr(start , length) length 可以省略
比如 : var str="Hello world!" document.write( str.substr(2 )); 返回结果是llo world!
以上是关于js中,indexOf()substring()和substr()的区别的主要内容,如果未能解决你的问题,请参考以下文章
js中substr,substring,indexOf,lastIndexOf等的用法
js中substr,substring,indexOf,lastIndexOf,split 的用法
JS indexOf(),split(),substring(),substr(),Math.ceil(),Math.floor(),Math.round()的内容