摘要: 使用encodeURI()和encodeURIComponent()函数将字符串转换为通用资源标识符 前提是字符串: var uri="http://www.jxbh.cn/illegal value.htm#start"; console.log(encodeURI(uri)); // http: 阅读全文
posted @ 2020-06-29 10:38 seafwg 阅读(693) 评论(0) 推荐(0) 编辑
摘要: 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); // { 阅读全文
posted @ 2020-06-29 10:36 seafwg 阅读(481) 评论(0) 推荐(0) 编辑