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