clycTjt.htm 835 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>出栏预测统计图</title>
  6. <script type="text/javascript" src="js/huimv/tjt.js"></script>
  7. <script type="text/javascript">
  8. $(function(){
  9. if ($("#lqid").val() > 0) {
  10. jQuery.ajax({
  11. type : "get",
  12. url : "getClycTjt.htm",
  13. data : { "lqid" : $("#lqid").val()},
  14. dataType : "json",
  15. async : true,
  16. success : function(data) {
  17. if (data) {
  18. getHighchartTjt2(data);
  19. }
  20. }
  21. });
  22. }
  23. });
  24. </script>
  25. </head>
  26. <body>
  27. <input type="hidden" id="lqid" name="lqid" value="$!lqid" />
  28. <div>
  29. <div id="chartDiv" style="height: 100%; width: 100%;"></div>
  30. </div>
  31. </body>
  32. </html>