JavaScript indexOf() 方法

ytmpliqpl

ytmpliqpl

2016-02-19 16:57

今天天气好晴朗处处好风光,好天气好开始,图老师又来和大家分享啦。下面给大家推荐JavaScript indexOf() 方法,希望大家看完后也有个好心情,快快行动吧!

  Definition and Usage

  定义与用法

  The indexOf() method returns the position of the first occurrence of a specified string value in a string.

  indexOf()方法返回指定值在字符串中第一次出现的位置

  Syntax

  语法

stringObject.indexOf(searchvalue,fromindex) 

Parameter

  参数Description

  注释searchvalue

  所要匹配的值Required. Specifies a string value to search for

  必选项。指定所要查找匹配的值fromindex

  起始位置Optional. Specifies where to start the search

  可选项。匹配开始的位置

  Tips and Notes

  注意

  Note: The indexOf() method is case sensitive!

  注意:indexOf()方法是精确匹配的

  Note: This method returns -1 if the string value to search for never occurs.

  注意:如果没有可匹配的值,返回 -1 Example

  实例

  In this example we will do different searches within a "Hello world!" string:

  在本例中,我们将对Hello world!字符串进行不同的查找匹配:

script type="text/javascript"var str="Hello world!"document.write(str.indexOf("Hello") + "br /")document.write(str.indexOf("World") + "br /")document.write(str.indexOf("world"))/script 

  The output of the code above will be:

  返回结果为:

0-16 

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/webkaifa/)

  Try-It-Yourself Demos

  互动演练

  indexOf()

  How to use indexOf() to search within a string.

  如何用indexOf()对字符串进行查找匹配

(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/webkaifa/)
展开更多 50%)
分享

猜你喜欢

JavaScript indexOf() 方法

Web开发
JavaScript indexOf() 方法

Javascript中indexof方法的妙用

Web开发
Javascript中indexof方法的妙用

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

JavaScript中indexOf函数

Web开发
JavaScript中indexOf函数

给Javascript数组添加一个indexOf方法

Web开发
给Javascript数组添加一个indexOf方法

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

javascript的indexOf如何才能忽略大小写

Web开发
javascript的indexOf如何才能忽略大小写

关于Javascript中字符串函数indexOf出现的问题?

Web开发
关于Javascript中字符串函数indexOf出现的问题?

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

WPS文字文档保护修改区域

WPS文字文档保护修改区域

用C#制作字幕显示屏幕保护

用C#制作字幕显示屏幕保护
下拉加载更多内容 ↓