2009年9月24日 星期四

計算字串長度

var str = 'abc';
alert(str.length);
=>3

var str = '測試';
alert(str.length);
=>2

沒有留言: