码迷,mamicode.com
首页 > Web开发 > 详细

发送get请求时,url中解析出现乱码的解决,无法跳转,url中出现转义

时间:2020-06-29 11:47:59      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:component   encodeuri   解析   var   pre   无法跳转   www   转换   java   

使用encodeURI()和encodeURIComponent()函数将字符串转换为通用资源标识符
前提是字符串:

var uri="http://www.jxbh.cn/illegal value.htm#start";
console.log(encodeURI(uri));
// http://www.jxbh.cn/illegal%20value.htm#start
var uri="http://www.jxbh.cn/illegal value.htm#start";
console.log(encodeURIComponent(uri));
// http%3A%2F%2Fwww.jxbh.cn%2Fillegal%20value.htm%23start

发送get请求时,url中解析出现乱码的解决,无法跳转,url中出现转义

标签:component   encodeuri   解析   var   pre   无法跳转   www   转换   java   

原文地址:https://www.cnblogs.com/intelwisd/p/13206610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!