Possible Duplicate:
Capitalize first letter of string in javascript可能重复:在javascript中大写字符串的第一个字母
How do I make the first letter of a string uppercase?
如何将字符串的第一个字母设为大写?
1 个解决方案
#1
35
Here's a function that does it
这是一个功能
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
#1
35
Here's a function that does it
这是一个功能
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