12345678910111213141516171819202122232425262728293031323334353637 |
- <!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(){
- if ($("#lqid").val() > 0) {
- jQuery.ajax({
- type : "get",
- url : "getQtRcscsTjt.htm",
- data : {"lqid" : $("#lqid").val(), "dbrq" : $("#dbrq").val(), "tjtksrq" : $("#tjtksrq").val(), "tjtjsrq" : $("#tjtjsrq").val(), "yweb" : $("#yweb3").val()},
- dataType : "json",
- async : true,
- success : function(data) {
- if (data) {
- getHighchartTjt2(data);
- }
- }
- });
- }
- });
- </script>
- </head>
- <body>
- <input type="hidden" id="lqid" name="lqid" value="$!lqid" />
- <input type="hidden" id="yweb3" name="yweb" value="$!yweb" />
- <input type="hidden" id="dbrq" name="dbrq" value="$!dbrq" />
- <input type="hidden" id="tjtksrq" name="tjtksrq" value="$!tjtksrq" />
- <input type="hidden" id="tjtjsrq" name="tjtjsrq" value="$!tjtjsrq" />
- <div>
- <div id="chartDiv" style="height: 100%; width: 100%;"></div>
- </div>
- </body>
- </html>
|