DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 精通Javascript系列之數據類型 字符串
精通Javascript系列之數據類型 字符串
編輯:關於JavaScript     
js一共有9種數據類型,分別是:未定義(undefined)、空(null)、布爾型(boolean)、字符串(string)、數值(number)、對象(object)、引用(reference)、列表(completion)。其中後3種僅僅作為JS運行中間結果的數據類型,因此不能在代碼中使用,下面先講一下字符串String:
字符串由零個或者多個字符構成。字符可以包括字母、數字、標點符號和空格。字

符串必須放在單引號或雙引號內:
--------------------------------
例: var a='神筆小c';
var a=“神筆小c”;
--------------------------------
單引號和雙引號可以隨便使用,但是,如果字符串裡包含雙引號時應該把整個字符

串放在單引號裡;
字符串有length屬性,可以返回字符串字符的個數
---------------------------------
例:
var a="hell world";
alert(a.length);
結果:為11;
---------------------------------
Slice、substring、substr方法是從字符串中取一段子字符串,其中

slice,substring都接受兩個參數,分別為子字符串的起始位置和終止位置,返回兩

者之間的子字符串,不包括終止位置的那個字符。如果第2個參數不設置,則從起始

位置到字符串的末尾。
例:
用Slice和substring方法取出字符串:
復制代碼 代碼如下:
<script language="javascript">
var a="abc";
document.write(a.slice(1,3));
document.write(a.substring(1,3));
</script>

結果如下:
A,B
AB
---------------------------------
indexOf()和lastIndexOf()對於搜索操作十分有效
例:
復制代碼 代碼如下:
<script lanugage="javascript">
var a="abcdef";
document.write(a.indexOf("b"));//從前往後
document.write(a.indexOf("b",3));可選參數,從第幾個字符開始往後找
document.write(a.lastIndexOf("e"));從後往前
cocument.write(a.lastIndexOf("d",3));//可選參數,從第幾個字符開始往前找
</script>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved