簡單點就是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了呢,有疑問請給我留言吧,大家共同進步。