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

📄 14.18.htm

📁 这是我卖的书上的源码 这书是电子邮电出版的是有关网络编程 有详细的例子
💻 HTM
字号:
<!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>5,4,3,2,1...BOOM</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<h1 align="center">浏览器自我关闭</h1>
<hr>
<div align="center">
<form action="#" method="get"> 
  <!--通过onclick调用setTimeout()设置超时时间,时间到后,调用window.close()关闭窗口-->
  <input type="button" value="超时开始"
         onclick="timer = setTimeout('window.close()', 5000); 
alert('5秒后关闭浏览器'); return true;">
  <!--通过onclick调用clearTimeout()取消超时,同时弹出提示信息-->
<input type="button" value="取消超时"
         onclick="clearTimeout(timer); alert('Aborted!'); return true;">
</form>
</div>
</body>
</html>

⌨️ 快捷键说明

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