关于javascript:如何将字符串的第一个字母变为大写?

How do I make the first letter of a string uppercase?

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
Capitalize first letter of string in javascript

如何将字符串的第一个字母变为大写?


这是一个函数

1
2
3
4
5
6
7
8
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