// 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);

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
  • 2022-02-08
  • 2022-12-23
  • 2021-11-19
  • 2021-12-30
  • 2022-02-08
猜你喜欢
  • 2021-11-28
  • 2021-12-10
  • 2022-12-23
  • 2021-05-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案