jQuery Title Case

后端 未结 13 2191
小鲜肉
小鲜肉 2020-12-12 22:54

Is there a built in way with jQuery to \"title case\" a string? So given something like bob smith, it turns into \"Bob Smith\"?

13条回答
  •  北荒
    北荒 (楼主)
    2020-12-12 23:29

    You can also use method like this -

    toTitleCase: function (str) {
            return str.replace(/\w\S*/g, function (txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); });
        }
    

提交回复
热议问题