首字母大写Jquery
这个问题在这里已经有了答案:
干得好:
data[0] = data[0].toUpperCase();
使用Javascript Prototype ..
String.prototype.capitalize = function() {
return this.charAt(0).toUpperCase() + this.slice(1);
}
var test = "hello";
console.log(test.capitalize())
链接地址: http://www.djcxy.com/p/17873.html
上一篇: First letter to be capitalize Jquery
下一篇: Capitalize first letter of a string using Angular or typescript