?? password_set_success.jsp
字號(hào):
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>密碼設(shè)置</title>
<link rel="stylesheet" href="../css/default.css"/>
<script type="text/javascript">
function closeWin(){
window.close();
window.opener.location.reload();
}
function conditionChange(){
document.getElementById('alertForm').style.display = "block";
document.getElementById('inputForm').style.display = "none";
}
</script>
</head>
<body>
<%
String fileId = (String)request.getParameter("fileId");
%>
<form action="download.action" onsubmit="conditionChange()">
<input type="hidden" name="fileId" value="<%=fileId%>">
<div id="alertForm">
<h3 align="center">密碼設(shè)置成功!</h3>
<table algin="center" width="100%">
<tr>
<td align="center"><input class="btn" type="button" value="關(guān)閉" onclick="closeWin()"></td>
</tr>
</table>
</div>
</form>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -