网页中文乱码问题

1,首先
中文乱码问题::
tomcat Server的server.xml中 加入 URIEncoding=”UTF-8”

<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443" URIEncoding="UTF-8"/>

2,然后, 使用 js的 encodeURIComponent(“”)

var address = $("#office_address").val();
            address = encodeURIComponent(address);
            var longitude=$("#office_longitude").val();
            var latitude=$("#office_latitude").val();

你可能感兴趣的:(JavaScript,tomcat,乱码)