iframe get请求传递中午参数 乱码 解决方案

当用户的页面需要动态加载iframe 时,

如果iframe的src中包中文参数会出现编码错误;

必须加编码,然后再解码。 编码:encodeURI(encodeURI("包含中文的串")) 解码:java.net.URLDecoder.decode("需要解码的串","utf-8");

解决方案

使用  encodeURI(‘中文‘) 进行编码操作,

js代码:

$(function() {
	$("#frame").attr(‘src‘, ‘${basePath}mi/right.do?bidItemName=‘ +encodeURI(‘中文‘));
});

html代码
<html>
<body>
<iframe src="" style="width: 100%;border:0; height:300px" scrolling="no" frameBorder=0  id="frame"></iframe>
</body>
</html>

iframe get请求传递中午参数 乱码 解决方案

上一篇:Qt中在label上载入图片后在上面画矩形框的方法


下一篇:算法之旅 Euclid算法的扩展