fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.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>
运行结果