如何制作字符串大写的第一个字母?

可能重复:
在javascript中首字母大写

如何制作字符串大写的第一个字母?


这是一个可以做到的功能

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/17855.html

上一篇: How do I make the first letter of a string uppercase?

下一篇: Custom flash component ApplicationDomain