JavaScript
JavaScript 字符串(String) 对象
字符串(String)使用长度属性length来计算字符串的长度
源代码:
点击运行 »
<script> var txt = "Hello World!"; document.write("<p>" + txt.length + "</p>"); var txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; document.write("<p>" + txt.length + "</p>"); </script>
运行结果:
点击运行 »