如何把一个字符串里的所有单词的第一个字符变大写?
Posted 四哥-云上
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何把一个字符串里的所有单词的第一个字符变大写?相关的知识,希望对你有一定的参考价值。
如何把一个字符串里的所有单词的第一个字母变大写?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script type="text/javascript">
function titleCase(str)
return str.toLowerCase().split(' ').map(function(word)
return (word.charAt(0).toUpperCase() + word.slice(1));
).join(' ');
alert(titleCase("hello world!")); //"Hello World"
</script>
</head>
<body>
</body>
</html>
以上是关于如何把一个字符串里的所有单词的第一个字符变大写?的主要内容,如果未能解决你的问题,请参考以下文章