12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>wd</title>
- <script type="text/javascript">
- $(function(){
- if ($("#dweb").val() != "") {
- jQuery.ajax({
- type : "get",
- url : "getZzwdTjt.htm",
- data : {"dweb" : $("#dweb").val()},
- dataType : "json",
- async : true,
- success : function(data) {
- getHighchartTjt(data, "chartDiv_A");
- }
- });
- }
- });
- </script>
- </head>
- <body>
- <input type="hidden" id="dweb" value="$!dweb"/>
- <div>
- <div id="chartDiv_A" style="width:98%;margin-right:20px;margin-left:-10px;">无数据</div>
- </div>
- </body>
- </html>
|