JavaScript 参考手册
Style textTransform 属性
把每个单词的首字母转换为大写
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <script> function displayResult() { document.getElementById("p1").style.textTransform = "capitalize"; } </script> </head> <body> <p id="p1">This is some text.</p> <br> <button type="button" onclick="displayResult()">转换文本首字符为大写</button> </body> </html>
运行结果:
点击运行 »