JavaScript 参考手册
JavaScript length 属性
返回字符串的字符数
源代码:
点击运行 »
<script> var txt = "Hello World!"; document.write(txt.length); </script>
运行结果:
点击运行 »