KnowledgeList.jsp
2.54 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
58
59
60
61
62
63
64
65
66
67
68
69
70
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@ include file="/systeminfo/init_wev8.jsp"%>
<%@ include file="/systeminfo/leftMenuCommon.jsp" %>
<HTML>
<HEAD>
<script src="/js/tabs/jquery.tabs.extend_wev8.js"></script>
<link type="text/css" href="/js/tabs/css/e8tabs1_wev8.css" rel="stylesheet" />
<link rel="stylesheet" href="/css/ecology8/request/searchInput_wev8.css" type="text/css" />
<script type="text/javascript" src="/js/ecology8/request/searchInput_wev8.js"></script>
<link rel="stylesheet" href="/css/ecology8/request/seachBody_wev8.css" type="text/css" />
<link rel="stylesheet" href="/css/ecology8/request/hoverBtn_wev8.css" type="text/css" />
<script type="text/javascript" src="/js/ecology8/request/hoverBtn_wev8.js"></script>
<script type="text/javascript" src="/js/ecology8/request/titleCommon_wev8.js"></script>
<style type="text/css">
.rightBoxDiv{
right: 0px;
position: absolute;
}
</style>
</head>
<%
String name = Util.fromScreen3(request.getParameter("name"), user.getLanguage());
String createrId = Util.fromScreen3(request.getParameter("createrId"), user.getLanguage());
%>
<BODY>
<div class="e8_box demo2" id="rightContent">
<div class="e8_boxhead">
<div class="div_e8_xtree" id="div_e8_xtree"></div>
<div class="e8_tablogo" id="e8_tablogo"></div>
<div class="e8_ultab">
<div class="e8_navtab" id="e8_navtab">
<span id="objName"></span>
</div>
<div class="rightBoxDiv">
<input class="middle e8_btn_top_first" type="button" value="搜索 ">
<span title="菜单" class="cornerMenu middle" id="rightMenuDiv"></span>
</div>
</div>
</div>
<div class="tab_box">
<iframe src="KnowledgeListContent.jsp?name=<%=name %>&createrId=<%=createrId %>" id="tabcontentframe" name="tabcontentframe" class="flowFrame" frameborder="0" height="100%" width="100%;"></iframe>
</div>
</div>
</BODY>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.e8_box').Tabs({
getLine : 1,
iframe : "tabcontentframe",
staticOnLoad:true,
objName:"知识点维护"
});
jQuery("#rightMenuDiv").click(function(){
var obj = jQuery("#tabcontentframe")[0].contentWindow;
if(jQuery(obj.document).find("#rightMenu").is(":hidden")){
var left = jQuery(".rightBoxDiv").offset().left;
obj.showRightClickMenuByHand(jQuery("body").width() - 160,-3);
}else{
obj.hideRightClickMenu();
}
});
jQuery(".e8_btn_top_first").click(function(){
jQuery("#tabcontentframe")[0].contentWindow.document.frmMain.submit();
});
});
</script>
</HTML>