Quick Solution to Chinese garbled characters linked by FusionCharts

Source: Internet
Author: User

Question:

When using fusioncharts, you may also want to click a part of the Chart on the demo.html page, and then display the details of this part.

Fusioncharts has setDataXML, and setDataURL are used to set data. However, there may be garbled characters (which may occur in AJAX). you should understand the specific usage of shoes.

Details are not described in detail.

Solution.

If the returned content of your Ajax request is garbled, you can directly use Jquery. ajax.
Copy codeThe Code is as follows:
Function mychartclick (month ){
Var id = 1;

Var d = new Date ();
Var strURL = 'xxxx'

JQuery. ajax ({
Type: "Get ",
Url: strURL

Data: strURL,
Success: function (data ){
Var chartObj = getChartFromId ("myid ");
ChartObj. setDataXML (data); // you can directly set the content of myid with data here.
}
});
}

Without garbled characters ..

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.