📄 addcompletenode.jsp
字号:
<%@ page contentType="text/html;charset=GBK" language="java"%>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
<%@include file="/common/taglibs.jsp"%>
<%@ taglib prefix="ww" uri="webwork"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<%String contextPath = request.getContextPath();%>
<head>
<script language="javaScript">
var contextPath = '<%=contextPath%>';
function ev_ok() {
var actorAttr = new Object();
actorAttr.id = formItem.id.value;
actorAttr.name = formItem.name.value;
window.returnValue = actorAttr;
window.close();
}
function ev_close() {
window.close();
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<link rel="stylesheet"
href="<c:out value='${pageContext.request.contextPath}'/>/resource/css/main.css"
type="text/css">
</head>
<body>
<table width="98%">
<tr>
<td width="10" class="image-label"><img
src="<ww:url value="/resource/image/email2.jpg"/>" /></td>
<td width="3"></td>
<td width="100" class="text-label">{*[CompleteNodeInfo]*}</td>
<td>
<table width="100%" border=1 cellpadding="0" cellspacing="0"
class="line-position">
<tr>
<td></td>
<td class="line-position2" width="60" valign="top">
<button class="button-image"
onClick="ev_ok();"><img
src="<ww:url value="/resource/image/save.gif"/>">{*[Save]*}</button>
</td>
<td class="line-position2" width="70" valign="top">
<button class="button-image"
onClick="ev_close();"><img
src="<ww:url value="/resource/image/back.gif"/>">{*[Exit]*}</button>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table border=1 width=97%>
<ww:form method="post" id="formItem">
<ww:textfield cssClass="input-cmd" label="{*[name]*}" name="name" />
</ww:form>
</table>
</body>
<script language="JavaScript">
var obj = window.dialogArguments;
try{
if(obj!= null&&obj.name!=null){
formItem.name.value=obj.name;
}
}catch(ex){}
</script>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -