formulaList.jsp
2.05 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
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<%@ taglib uri="/WEB-INF/weaver.tld" prefix="wea"%>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>formulaList</title>
<style>
</style>
</head>
<body>
<div id="formulaListModal">
<div class="coverFormula"></div>
<div class="contentFormula">
<div class="listHead">公式列表 <span>×</span></div>
<table cellspacing="0" cellpadding="0">
<thead>
<tr>
<th>函数类型</th>
<th>公式名</th>
<th>活动单元格</th>
<th>公式</th>
<th>描述</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<script>
var window_url = getQueryString();
var parentWin = $('#_DialogFrame_'+window_url,window.top.document)[0].contentWindow;
// const dialog = window.top.getDialog(window);
function getQueryString(){
var subscript = window.location.search.lastIndexOf('=');
r = window.location.search.substr(parseInt(subscript)+1);
if(r!=null) return r; return null;
}
// $(document).ready(function(){
// var formulaListModal = document.getElementById('formulaListModal');
// if(formulaListModal.style.display == 'block'){
// console.log('11111111')
// }
// });
</script>
</body>
</html>