ie浏览器 jsp中链接参数为中文的处理

在js中,使用 encodeURIComponent(encodeURIComponent("警情抽查"))来处理参数,例如: mini.get("khxmdm").setUrl("sso/tpaKhbz3/findDictByCondition?pylb="+encodeURIComponent(encodeURIComponent("警情抽查"))+"&sfdm=3");
在后台使用 java.net.URLDecoder.decode((String)page.getParam("pylb"),"UTF-8") 来解码参数 。

原文地址:https://www.cnblogs.com/antis/p/6164355.html