length 属性返回字符串的长度(字符数)。
所有主要浏览器都支持 length 属性
返回字符串的字符数:
<script> var txt = "Hello World!"; document.write(txt.length); </script> 以上实例输出结果: 12