Ajax Chinese garbled characters

Source: Internet
Author: User

Solve the problem that garbled characters may occur when Ajax transmits Chinese characters.

// If the transfer parameter is directly assigned, garbled characters are generated!
Http_request.open ("Post", URL, true );

Http_request.setrequestheader ('content-type ',
'Application/X-WWW-form-urlencoded ');
Http_request.send ("Action =" + strname + "& val =" + val );
// If the Val value is Chinese, garbled characters are generated.

// The solution is simple: Use escape (string) in Javascript)
Function
Http_request.open ("Post", URL, true );
Http_request.setrequestheader ('content-type ',
'Application/X-WWW-form-urlencoded ');
Http_request.send ("Action =" + strname + "& val =" + escape (VAL ));
// If Val is set to Chinese, no garbled encodeuri (post) is generated.The simplest solution to responsetext Chinese garbled characters returned by get in Ajax

Use Ajax
When you get a page, most of the Chinese characters in responsetext will be garbled, because when XMLHTTP processes the returned responsetext
Resposebody according to the UTF-8 encoding into the decoding test form, if the server is indeed the UTF-8 data stream when the Chinese characters will be correctly displayed, and sent out the GBK encoding stream is 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.