get请求url传递中文参数

url地址:其中参数data.recruitmentName为中文。

//使用encodeURI()进行二次编码
location.href = "http://localhost:8080/pages/manager/jobs_main.html?recruitmentId="+data.id+"&recruitmentName="+encodeURI(encodeURI(data.recruitmentName));

获取参数值:

//使用decodeURI进行解码
decodeURI(decodeURI(recruitmentName))
上一篇:url传递参数 加码和解码 encodeURI decodeURI


下一篇:Python实现unescape解码JS(escape,encodeURI等方法)url编码字符串