时间:2021-07-01 10:21:17 帮助过:6人阅读
输出为:12
<script type="text/javascript">
var txt="Hello World!"
document.write(txt.length) //使用字符串对象的长度属性来计算字符串中的字符数目,
输出为:HELLO WORLD!
<script type="text/javascript">
var str="Hello world!"
document.write(str.toUpperCase())//使用字符串对象的 toUpperCase() 方法来显示大写字母文本。