📄 dlgyesno.asp
字号:
<html>
<head>
<title>提示</title>
<style type="text/css">
body,td {font-size:12px;}
.cmdbtn {width:45px;height:20px;}
.hole {font-family:arial;font-size:10px;width:24px;height:18px;text-align:right;}
div {cursor:default;}
</style>
<body bgcolor=#CCCCCC scroll=no topmargin=5>
<center>
<table width="75%" border="0">
<tr>
<td id="ask" name="ask"> </td>
</tr>
</table>
<br>
<p>
<input type=button onClick="jscript:SubmitYES();" value=" 是 " name="button">
<input type=button onClick="jscript:SubmitNO();" value=" 否 " name="button2">
</p>
</center>
</body>
</html>
<script language=javascript>
function SubmitYES()
{
window.returnValue = "YES";
window.close();
}
function SubmitNO()
{
window.returnValue = "NO";
window.close();
}
document.all("ask").innerText=dialogArguments;
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -