How do I make the first letter of a string uppercase?
Possible Duplicate:
Capitalize first letter of string in javascript
How do I make the first letter of a string uppercase?
这是一个可以做到的功能
function firstToUpperCase( str ) {
return str.substr(0, 1).toUpperCase() + str.substr(1);
}
var str = 'hello, I'm a string';
var uc_str = firstToUpperCase( str );
console.log( uc_str ); //Hello, I'm a string
链接地址: http://www.djcxy.com/p/17856.html
上一篇: 将字符串的第一个字符转换为大写
下一篇: 如何制作字符串大写的第一个字母?