JS定时关闭窗口的实例
时间:2021-08-11 08:25:46|栏目:JavaScript代码|点击: 次
复制代码 代码如下:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type ="text/css" >
.main{ background-color:Silver; width :200px; height :100px; margin-left:40%; margin-top :200px; text-align :center;}
</style>
<script src="js/ui/jquery-1.7.1.min.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
var n = 3;
function showTime() {
n--;
$('#divMain').html(n + ' 秒后关闭窗口');
if (n == 0)
window.close();
else
setTimeout('showTime()', 1000);
}
</script>
</head>
<body onload ="showTime()">
<form id="form1" runat="server">
<div id ="divMain" class ="main" >
</div>
</form>
</body>
</html>
栏 目:JavaScript代码
下一篇:JavaScript实现带播放列表的音乐播放器实例分享
本文标题:JS定时关闭窗口的实例
本文地址:http://www.codeinn.net/misctech/166105.html