Get Chinese garbled problem solution:
Modify the conf/server.xml file in the Tomcat root directory. The code is as follows:
Copy the code code as follows:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443"
URIEncoding="UTF-8"
/>
However, if you use IE browser, you will find that the problem of Chinese garbled characters still exists. We need to process the URL requested from the front desk to the background. The code is as follows:
jQuery("#divID").empty().load(encodeURI(url), {parameter name: parameter value});