js indexof用法indexOf()定義和用法

來源:互聯網
上載者:User

標籤:style   ar   java   strong   sp   div   on   代碼   ef   

indexOf()定義和用法

indexOf() 方法可返回某個指定的字串值在字串中首次出現的位置。

文法

stringObject.indexOf(searchvalue,fromindex)

 參數 :

searchvalue:必需。規定需檢索的字串值。可選的整數參數。

fromindex:規定在字串中開始檢索的位置。它的合法取值是 0 到 stringObject.length - 1。如省略該參數,則將從字串的首字元開始檢索。

說明

該方法將從頭到尾地檢索字串 stringObject,看它是否含有子串 searchvalue。開始檢索的位置在字串的 fromindex 處或字串的開頭(沒有指定 fromindex 時)。如果找到一個 searchvalue,則返回 searchvalue 的第一次出現的位置。stringObject 中的字元位置是從 0 開始的。

提示和注釋

注釋:indexOf() 方法對大小寫敏感!

注釋:如果要檢索的字串值沒有出現,則該方法返回 -1。

執行個體

在本例中,我們將在 "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>

以上代碼的輸出:

0  -1  6   
多數用途:
可以用於郵箱是否正確的判斷,例如
<script type="text/javascript">    
if((yx.email.value.indexOf(‘@‘,0)==-1)||(yx.email.value.indexOf(‘.‘,0)==-1))
{
alter("郵箱地址錯誤");
yx.email.focus();
return false;
}
</script>

js indexof用法indexOf()定義和用法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.