JavaScript indexOf() 方法
實例
查找字符串 "welcome":
var str="Hello world, welcome to the universe.";
var n=str.indexOf("welcome");
var n=str.indexOf("welcome");
n 輸出結(jié)果:
var str="Hello world, welcome to the universe.";
document.write(str.indexOf("welcome"));
嘗試一下 ?
定義和用法
indexOf() 方法可返回某個指定的字符串值在字符串中首次出現(xiàn)的位置。
如果沒有找到匹配的字符串則返回 -1。
注意: indexOf() 方法區(qū)分大小寫。
提示: 同樣你可以查看類似方法 lastIndexOf() 。
瀏覽器支持
所有主要瀏覽器都支持 indexOf() 方法。
語法
string.indexOf(searchvalue,start)
參數(shù)值
參數(shù) | 描述 |
---|---|
searchvalue | 必需。規(guī)定需檢索的字符串值。 |
start | 可選的整數(shù)參數(shù)。規(guī)定在字符串中開始檢索的位置。它的合法取值是 0 到 string Object.length - 1。如省略該參數(shù),則將從字符串的首字符開始檢索。 |
返回值
類型 | 描述 |
---|---|
Number | 查找指定字符串第一次出現(xiàn)的位置,如果沒找到匹配的字符串則返回 -1。 |
技術(shù)細節(jié)
JavaScript 版本: | 1.0 |
---|
更多實例
實例
在字符串查找字符 "e" 第一次出現(xiàn)的位置:
var str="Hello world, welcome to the universe.";
var n=str.indexOf("e");
var n=str.indexOf("e");
n 輸出結(jié)果:
var str="Hello world, welcome to the universe.";
document.write(str.indexOf("e"));
嘗試一下 ?
實例
在字符串第五個位置開始查找字符 "e" 第一次出現(xiàn)的位置:
var str="Hello world, welcome to the universe.";
var n=str.indexOf("e",5);
var n=str.indexOf("e",5);
n 輸出結(jié)果:
var str="Hello world, welcome to the universe.";
document.write(str.indexOf("e",5));
嘗試一下 ?
更多建議: