window.location.href.indexOf()
这个是源码的:
/**
* Returns the position of the first occurrence of a substring.
* @param searchString The substring to search for in the string
* @param position The index at which to begin searching the String object. If omitted, search starts at the beginning of the string.
*/
这个是翻译后的:
* 返回一个字符串中第一次出现的位置。
* @param要查找的字符串的子串搜索的字符串
* @param位置指数在开始搜索的字符串对象。如果省略,搜索在字符串的开头开始。
window.location.href.indexOf()
版权声明:本文由 Ian 在 2018年04月12日发表。本文采用CC BY-NC-SA 4.0许可协议,非商业转载请注明出处,不得用于商业目的。
文章题目及链接:《window.location.href.indexOf》