一些处理字符的工具 2020-06-05 12:35:05 html Visits 0 Contents 连字符转驼峰式参考链接 连字符转驼峰式 #连字符转驼峰式 123456function toCamel(str) { var temp = str.replace(/(?:-+([^-]))/g, function ($1, $2) { return $2.toUpperCase(); }); return temp.slice(0, 1).toUpperCase() + temp.slice(1);;} #参考链接 Contact Form v9 Regexper JS 实现:驼峰式转下横线,下横线转驼峰式 js监听textarea 内容的变化,并计算内容的长度