How to fix the garbled characters when AJAX posts Chinese Characters

Source: Internet
Author: User

Add the character encoding method:
Response. setHeader ("charset", "gb2312 ");

**************************************** ****
The original description is as follows:

When AJAX is used to GET back to a page, most of the Chinese characters in RESPONSETEXT will be garbled, this is because xmlhttp in processing the returned responseText, is the resposeBody according to the UTF-8 encoding into the decoding test form, if the server sends a data stream that is indeed a UTF-8, the Chinese characters will be correctly displayed, and when the GBK encoding stream is sent out, it will be messy. The solution is to add a HEADER in the sent stream to specify the encoding stream to be sent, so that XMLHTTP will not be messed up.

PHP: header ('content-Type: text/html; charset = GB2312 ');
ASP: Response. Charset ("GB2312 ")
JSP: response. setHeader ("Charset", "GB2312 ");

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.