jQuery Title Case

后端 未结 13 2148
小鲜肉
小鲜肉 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:25

    You can use css, like:

    .className 
    {
        text-transform:capitalize;
    }
    

    This capitalizes the first letter. You can read more here

提交回复
热议问题