editdatatop.vm
来自「负责公文的传输及一些处理功能」· VM 代码 · 共 36 行
VM
36 行
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<link rel="stylesheet" href="$request.getContextPath()/csslib/style.css" type="text/css">
<script Language="JavaScript" src="$request.getContextPath()/jslib/function.js"></script>
<script language="javascript">
function window_onload(){
thisForm.add.focus();
}
function queding(){
var defaultValue = thisForm.add.value;
if (!trim(defaultValue)==""){
thisForm.add.value="";
parent.mainFrame.add(defaultValue);
}
else parent.mainFrame.submit_onclick();
}
function setclose(){
parent.close();
}
</script>
</head>
<body onload="window_onload()" onbeforeunload="setclose()">
<form name="thisForm" method="post">
<br>
<table align=center width=92% border=0 align=center>
<tr>
<td align=left><img src="$request.getContextPath()/image/address.gif"></td>
<td align=right><input type="text" style="width:120" maxlength="50" name="add" value="" onkeypress="return handleEnter(this, event)"> <button onclick="queding()" >确 定</button> <button onclick="setclose();" >关 闭</button></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?