indexOf 用法
來源:易賢網(wǎng) 閱讀:2014 次 日期:2014-10-09 11:11:25
溫馨提示:易賢網(wǎng)小編為您整理了“indexOf 用法”,方便廣大網(wǎng)友查閱!

indexOf用于發(fā)現(xiàn)一系列的字符在一個字符串中等位置并告訴你

子字符串的起始位置。如果一個字符串中部包含該子字符串則

indexOf返回returns "-1." 這里是一個例子:

var the_word = "monkey";

讓我們從單詞 "monkey"開始。

var location_of_m = the_word.indexOf("m");

location_of_m(字母m的位置)將為0,因為字母m位于該字符串

的起始位置。var location_of_o = the_word.indexOf("o");

location_of_o(字母o的位置)將為1。

var location_of_key = the_word.indexOf("key");

location_of_key(key的位置)將為3因為子字符串“key”以字母

k開始,而k在單詞monkey中的位置是3。

var location_of_y = the_word.indexOf("y");

location_of_y)字母y的位置)是5。

var cheeky = the_word.indexOf("q");

cheeky值是-1,因為在單詞“monkey”中沒有字母q。

indexOf更實用之處:

var the_email = prompt("What's your email address?", "");

var the_at_is_at = the_email.indexOf("@");

if (the_at_is_at == -1)

{

alert("You loser, email addresses must

have @ signs in them.");

}

這段代碼詢問用戶的電子郵件地址,如果用戶輸入的電子郵件

地址中不包含字符 則 提示用戶"@你輸入的電子郵件地址

無效,電子郵件的地址必須包含字符@。"

charAt

chatAt方法用于發(fā)現(xiàn)一個字符串中某個特定位置的字符。這里

是一個例子:

var the_word = "monkey";

var the_first_letter = the_word.charAt(0);

var the_second_letter = the_word.charAt(1);

var the_last_letter = the_word.charAt(the_word.length-1);

the_first_letter(第1個字符)是"m"

the_second_letter(第2個字符)是"o"

the_last_letter(最后一個字符)是 "y"

注意利用字符串的length(長度)屬性你可以發(fā)現(xiàn)在包含多少個

字符。在本例中,the_word是"monkey",所以the_word.length

是6。不要忘記在一個字符串中第1個字符的位置是0,所以最后

一個字符的位置就是length-1。所以在最后一行中用了

the_word.length-1

更多信息請查看IT技術專欄

更多信息請查看腳本欄目
易賢網(wǎng)手機網(wǎng)站地址:indexOf 用法

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權所有:易賢網(wǎng)