JavaScript 参考手册
JavaScript ucfirst 函数
使用 ucfirst 转换一段话的首字母为大写
源代码:
点击运行 »
<script> function ucfirst(str) { str += ''; var f = str.charAt(0).toUpperCase(); return f + str.substr(1); } document.write(ucfirst('hello world!')); </script>
运行结果:
点击运行 »