12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
- <%@include file="/pages/includes/taglibs.jsp"%>
- <%String path = request.getContextPath();%>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>My JSP 'thightchart.jsp' starting page</title>
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/pages/mytest/css/mycss.css" />
- <link rel="stylesheet" type="text/css"
- href="<%=request.getContextPath()%>/resource/plugin/highslide/highslide.css" />
- <link rel="stylesheet" type="text/css"
- href="<%=request.getContextPath()%>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css" />
- <link rel="stylesheet" type="text/css" media="screen"
- href="<%=request.getContextPath()%>/resource/plugin/jqgrid/css/ui.jqgrid.css"/>
- </head>
- <body>
- <input id="biaotou" type="hidden" value="${biaotou }"><br>
- <input id="dianming" type="hidden" value="${dianming }"><br>
- <input id="danwei" type="hidden" value="${danwei }"><br>
- <!-- <input id="Button1" type="button" value="点击弹出层" onclick="ShowDiv('MyDiv','fade');queryDatafirsload()" />
- 弹出层时背景层DIV
- <div id="fade" class="black_overlay">
- </div> -->
- <div id="MyDiv" class="white_content" style="display: display">
- <!-- <div style="text-align: right; cursor: default; height: 40px;">
- <span style="font-size: 16px;" onclick="CloseDiv('MyDiv','fade')">关闭</span>
- </div> -->
- <fieldset style="height: 80px;width: 1200px" id="fst">
- <legend class="item_Name">查询条件</legend>
- <table class="dataform">
- <tr>
- <th width="100" class="item_Name">
- 开始时间:
- </th>
- <td width="120" style="text-align: left">
-
- <input
- class="Wdate"
- onFocus="WdatePicker({dateFmt:'yyyy-MM-dd',isShowWeek:true,readOnly:true})"
- id="startDate" name="startDate" title="开始日期" />
- </td>
- <th width="100" class="item_Name">
- 结束时间:
- </th>
- <td width="120" style="text-align: left">
- <input
- class="Wdate"
- onFocus="WdatePicker({dateFmt:'yyyy-MM-dd',isShowWeek:true,readOnly:true})"
- id="endDate" name="endDate" title="结束日期" />
- </td>
- <td width="120" style="text-align: right">
- <input type="button" onclick="javascript:queryData()" id="toexcel" value="查询"/>
- </td>
- </table>
- </fieldset>
- <div id="container" style="min-width:400px;height:400px"></div>
- </div>
- <script type="text/javascript" src="<%=path %>/pages/mytest/js/myjs.js"></script>
- <script type="text/javascript" src="<%=path %>/resource/js/jquery-1.8.3.js"></script>
- <script type="text/javascript" src="<%=path %>/pages/mytest/js/highstock.js"></script>
- <script type="text/javascript" src="<%=path %>/pages/mytest/js/exporting.js"></script>
- <script type="text/javascript" src="<%=path %>/pages/mytest/js/highcharts-zh_CN.js"></script>
- <script src="<%=request.getContextPath()%>/resource/js/datePicker/WdatePicker.js" type="text/javascript"></script>
- <script type="text/javascript">
- window.onload = function () {
-
-
- dianming=$("#dianming").val();
- biaotou=$("#biaotou").val();
- danwei=$("#danwei").val();
- init(biaotou,dianming,danwei);
- };
-
- </script>
- </body>
- </html>
|