且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用javascript将首字母大写

更新时间:2023-02-14 19:13:36

为什么不坚持使用jQuery,因为您已经在使用它

Why not stick with jQuery, as you're already using it

$('.price').text(function(_, txt) {
    return txt.charAt(0).toUpperCase() + txt.slice(1).toLowerCase();
});