Rumah > Artikel > hujung hadapan web > javascript如何解决url中文乱码问题
javascript解决url中文乱码问题的方法:1、传的页面用encodeURI针对整个参数进行编码;2、接收页面用decodeURI针对整个参数进行解码。
本教程操作环境:windows7系统、javascript1.8.5版,DELL G3电脑。
javascript解决url中文乱码问题的方法:
1.传的页面:
encodeURI(url + "?userName=" + userName);
//encodeURI针对整个参数进行编码
url + "?userName=" + encodeURIComponent(userName);
//encodeURIComponent针对单个参数进行编码
2.接收页面:
$("#id").html(decodeURI(userName));
//decodeURI针对整个参数进行解码
$("#id").html(decodeURIComponent(userName));
//decodeURIComponent针对单个参数进行解码
相关免费学习推荐:javascript视频教程
Atas ialah kandungan terperinci javascript如何解决url中文乱码问题. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!