摘要: 首字母大写js方法 // 方法1 (Vue 2.x 版本中使用过该方法) function capitalize(str) { return str.charAt(0).toUpperCase() + str.slice(1) } // 方法2 -- 使用replace function capit 阅读全文
posted @ 2020-08-19 22:15 小方块的世界 阅读(825) 评论(0) 推荐(0) 编辑