#连字符转驼峰式

1
2
3
4
5
6
function toCamel(str) {
var temp = str.replace(/(?:-+([^-]))/g, function ($1, $2) {
return $2.toUpperCase();
});
return temp.slice(0, 1).toUpperCase() + temp.slice(1);;
}

#参考链接