zzwdMain.htm 556 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>wd</title>
  5. <script type="text/javascript">
  6. $(function(){
  7. if ($("#dweb").val() != "") {
  8. jQuery.ajax({
  9. type : "get",
  10. url : "getZzwdTjt.htm",
  11. data : {"dweb" : $("#dweb").val()},
  12. dataType : "json",
  13. async : true,
  14. success : function(data) {
  15. getHighchartTjt(data, "chartDiv_A");
  16. }
  17. });
  18. }
  19. });
  20. </script>
  21. </head>
  22. <body>
  23. <input type="hidden" id="dweb" value="$!dweb"/>
  24. <div>
  25. <div id="chartDiv_A" style="width:98%;margin-right:20px;margin-left:-10px;">无数据</div>
  26. </div>
  27. </body>
  28. </html>