var s1 = "get-element-by-id"
// 转化为 getElementById
var fn = function(s) {
return s.replace(/-\w/g, function(x) {
console.log(x)
return x.slice(1).toUpperCase();
})
}
console.log(fn(s1)) // getElementById
上一篇
js解析 URL Params 为对象
let url = 'http://www.domain.com/?user=anonymous&id=123&id=456&city=%E5%8C%97%E4%BA%AC&enabled';
fun
2020-05-16
下一篇
js实现一个函数判断数据类型
function getType(obj){
if(obj === null) return String(obj)
return typeof obj === 'object' ?
2020-05-16