JavaScript indexOf() 方法

2016-02-19 16:57 6 1 收藏

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

【 tulaoshi.com - Web开发 】

  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

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

  注释searchvalue

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

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

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

  可选项。匹配开始的位置

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

  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 

  Try-It-Yourself Demos

  互动演练

  indexOf()

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

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

来源:http://www.tulaoshi.com/n/20160219/1613663.html

延伸阅读
标签: Web开发
JS中定义类的方式有很多种: 1、工厂方式   function Car(){    var ocar = new Object;    ocar.color = "blue";    ocar.doors = 4;    ocar.showColor = function(){     doc...
标签: Web开发
shift :删除原数组第一项,并返回删除元素的值;如果数组为空则返回undefined var a = [1,2,3,4,5]; var b = a.shift(); //a:[2,3,4,5]  b:1 unshift :将参数添加到原数组开头,并返回数组的长度 var a = [1,2,3,4,5]; var b = a.unshift(-2,-1); //a:[-2,-1,1,2,3,4,5]  b:7 注:在IE6.0下测试返回值总为undef...
标签: Web开发
调试javascript的好方法 1、从微软网站下载MS Script Debugger并安装,这是下载地址: http://download.microsoft.com/download/winscript56/install/1.0a/NT45XP/EN-US/scd10en.exe 2、修改IE的设置: IE的选项--高级,有两个选项默认是钩选的: Disable Script Debugging(Internet Explorer) Disable Script Debugging(...
1 第一次发现JavaScript中replace() 方法如果直接用str.replace("-","!") 只会替换第一个匹配的字符.   2 而str.replace(/\-/g,"!")则可以替换掉全部匹配的字符(g为全局标志)。  3  4  5 replace()   6 The replace() method returns the string that r...
标签: Web开发
a id="link1" name="link1" href="http://bbs.51js.com/"51js/a ============= 同一页面内的引用方法: 1、使用id: link1.href 2、使用name: document.all.link1.href 3、使用sourseIndex: document.all(4).href //注意,前面还有HTML、HEAD、TITLE和BODY,所以是4 4、使用链接集合: document.ancho...

经验教程

362

收藏

37
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部