JS基础之Global对象的编码与解码

// URI
var uri = 'http://www.apeland.cn/web index.html?name=zhangsan';
// encodeURIComponent()编码 使用最多的方法
console.log(encodeURI(uri));
console.log(encodeURIComponent(uri));

// 解码 decodeURIComponent()
// decodeURI(encodeuri);
// decodeURIComponent(encodeuri);

  

posted @ 2020-03-11 20:25  你有我备注吗  阅读(158)  评论(0编辑  收藏  举报