用于搜索字符串的 JavaScript 方法:
String.indexOf()
String.lastIndexOf()
String.startsWith()
String.endsWith()
String.indexOf()
indexOf() 方法返回指定文本在字符串中第一次出现(的位置)的索引:
实例
let str = "Please locate where 'locate' occurs!";
str.indexOf("locate") // 返回 7
用于搜索字符串的 JavaScript 方法:
String.indexOf()
String.lastIndexOf()
String.startsWith()
String.endsWith()
String.indexOf()
indexOf() 方法返回指定文本在字符串中第一次出现(的位置)的索引:
实例
let str = "Please locate where 'locate' occurs!";
str.indexOf("locate") // 返回 7