FunSearch.jsp
1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<%@ include file="/integration/integrationinit.jsp" %>
<SCRIPT language="javascript" src="/js/weaver_wev8.js"></script>
<link href="/css/Weaver_wev8.css" type=text/css rel=stylesheet>
<%@ taglib uri="/WEB-INF/weaver.tld" prefix="wea"%>
<html>
<head>
<style>
.detailfont{
font-family: 微软雅黑;
font-weight: 400;
font-style: normal;
}
td th{
padding:0 5px;
font-weight: 400;
font-style: normal;
}
font table{
border-collapse: collapse;
}
font table tr{
border-color:#c4c4c4 !important;
}
font table.paramTable tr td,font table.paramTable tr th{
border:1px solid #c4c4c4;
}
font table.paramTable tr th{
min-width: 81px;
}
a:hover {
color: #333333 !important;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function () {
loadfun();
function loadfun(){
$.post("/integration/Monitoring/FunSearchOperation.jsp",{"time":new Date().getTime()},function(data){
jQuery("#sb").html(data);
});
}
});
</script>
</head>
<body >
<div id="sb"> </div>
</body>
</html>