将字符串转换为驼峰命名

//join是数组函数,split是字符串函数。

var a = 'get-element-by-id'
//将a转换成数组。
var arr = a.split('-')  
for(var i = 0;i

你可能感兴趣的:(jscore)