簡單點就是string是字符(串)...
而array是數組...可以放數字啊,字符啊等一系列東東!!!
上個示例:
復制代碼 代碼如下:
var str = "liuzhanqi";
document.write(str["length"]);//等價str.l ength
var str = string.fromcharcode(72, 101, 108, 108, 111, 33);
document.write(str); //各整數作為unicode編碼,並連接成字符串。
var str1 = "liu".localecompare("zhan");//按本系統提供的默認比較規則比較當前字符串與參數字符串
document.write(str1);//
var str2 = "liu".slice(1);//在當前字符串中提取一個子字符串
document.writeln(str2);
document.writeln("se nki".split(' '));//用分隔符分割字符串,返回一個數組。
document.write('liu'.fontcolor('red'));
document.write('liu'.fixed());//使字符串顯示為等寬字
document.write('liu'.strike());//在字符串上添加刪除線
document.write("senki".sub());//顯示為下標
document.write("senki".sup());//顯示為上標
charCodeAt(index) 返回字符串index處的字符的Unicode編碼,該值是在0~65535之間的整數,若index超出了范圍,則返回NaN。
concat(str2) 將字符串str2連接在當前字符串組成一個新的字符串。
anchor(anchar_name) 創建一個錨點
link(url) 加上超鏈接
charAt(index) 返回字符串中index指定位置處的一個字符
小伙伴們是否了解了javascript中字符串String與數組Arry了呢,有疑問請給我留言吧,大家共同進步。