1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>料肉比统计图</title>
- <script type="text/javascript" src="js/huimv/tjt.js"></script>
- <script type="text/javascript">
- $(function(){
- var type = $("#type").val();
- var lqmc = $("#lqmc").val();
- var lqmc2 = $("#lqmc2").val();
- var jsms = $("#jsms").val();
- var tjtksrq = $("#tjtksrq").val();
- var tjtjsrq = $("#tjtjsrq").val();
- var tjtksrq2 = $("#tjtksrq2").val();
- var tjtjsrq2 = $("#tjtjsrq2").val();
- jQuery.ajax({
- type : "get",
- url : "getDb" + type + "Tjt.htm",
- data : {"lqmc" : lqmc, "lqmc2" : lqmc2, "jsms" : jsms, "tjtksrq" : tjtksrq, "tjtjsrq" : tjtjsrq, "tjtksrq2" :tjtksrq2, "tjtjsrq2" : tjtjsrq2 },
- dataType : "json",
- async : true,
- success : function(data) {
- getHighchartTjt(data);
- }
- });
- });
- </script>
- </head>
- <body>
- <input type="hidden" id="type" name="type" value="$!type" />
- <input type="hidden" id="lqmc" name="lqmc" value="$!lqmc" />
- <input type="hidden" id="lqmc2" name="lqmc2" value="$!lqmc2" />
- <input type="hidden" id="jsms" name="jsms" value="$!jsms" />
- <input type="hidden" id="tjtksrq" name="tjtksrq" value="$!tjtksrq" />
- <input type="hidden" id="tjtjsrq" name="tjtjsrq" value="$!tjtjsrq" />
- <input type="hidden" id="tjtksrq2" name="tjtksrq2" value="$!tjtksrq2" />
- <input type="hidden" id="tjtjsrq2" name="tjtjsrq2" value="$!tjtjsrq2" />
- <div>
- <div id="chartDiv" style="height: 100%; width: 100%;"></div>
- </div>
- </body>
- </html>
|