jsp问号传中文乱码问题,字符转义
jsp页面处理方式:encodeURI(encodeURI(HIGHER_AUTHORITY))
java代码处理方式:
//防止中文乱码
String HIGHER_AUTHORITY = java.net.URLDecoder.decode(request.getParameter("HIGHER_AUTHORITY"), "utf-8");
========字符转义===================
(data.list[i].XM).replace(/</g,'<').replace(/>/g,'>')