⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wait.jsp

📁 找了很久才找到到源代码
💻 JSP
字号:
<%@ page import="
	org.opencms.workplace.*
" %><%
	
	// get workplace class from request attribute
	CmsDialog wp = CmsDialog.initCmsDialog(pageContext, request, response);
	wp.setParamAction(CmsDialog.DIALOG_WAIT);

%><%= wp.htmlStart() %>

<script language="JavaScript">
function submitForm() {
	if (true == <%= wp.isSubElement() %>) {
		document.forms["main"].submit();
	}
}
</script>

<%= wp.bodyStart("dialog", "onload='submitForm();'") %>

<table border="0" cellpadding="0" cellspacing="0" align="center" style="margin-top: 100px;">
<tr>
	<td style="font-size: 14px;"><%= wp.key(org.opencms.workplace.commons.Messages.GUI_MESSAGE_WAIT_0)%></td>
</tr>
</table>

<form name="main" action="<%= wp.getDialogUri() %>" method="post">
<%= wp.paramsAsHidden() %>
</form>

<%= wp.bodyEnd() %>
<%= wp.htmlEnd() %>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -