dai

Members
  • Content count

    2
  • Joined

  • Last visited

About dai

  • Rank
    Forum Newbie
  1. Your reply helped me solve the problem! Thank you very much for your help!...
  2. I use the Ajax object in IE8 myChart, memory has not been released, and in CHROME and FIREFOX did not appear in this situation. The hope can help me to check. In addition, there are other solutions. </span> <%@ page language="java" import="java.util.*" pageEncoding="GBK"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title></title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <script src="../FusionChartsBroad/jquery-1.4.2.js" type="text/javascript"></script> <script language="JavaScript" src="../FusionChartsBroad/FusionCharts.js"></script> </head> <body> <div id="chartdiv" align="center"></div> </body> </html> <script type="text/javascript"> $(document).ready(function () { setInterval("aa()",10000); }); function test() { $.ajax({ type:"POST", url:"../FusionChartsBroad/Test_Error_Data.jsp", success: function(responseText){ var myChart = new FusionCharts("../FusionChartsBroad/AngularGauge.swf", "myChartId", "350", "200", "0", "0"); myChart.setDataXML(responseText); myChart.render("chartdiv"); myChart = null; delete myChart; CollectGarbage(); } }); } </script>