JavaScript indexOf() 方法

String 对象参考手册 JavaScript String 对象

实例

查找字符串 "welcome":

var str="Hello world, welcome to the universe.";
var n=str.indexOf("welcome");

n 输出结果:

点我分享笔记