dlgyesno.asp

来自「ASP原码」· ASP 代码 · 共 42 行

ASP
42
字号
<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">&nbsp;</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 + =
减小字号Ctrl + -
显示快捷键?