摘要:
使用encodeURI()和encodeURIComponent()函数将字符串转换为通用资源标识符 前提是字符串: var uri="http://www.jxbh.cn/illegal value.htm#start"; console.log(encodeURI(uri)); // http: 阅读全文
摘要:
var temp1 = ['x','y','z']; var temp2 = [1,2,3]; var obj = {}; for(let i = 0;i < temp1.length;i++) { obj[temp1[i]] = temp2[i]; } console.log(obj); // { 阅读全文