求一段 倒计时弹出对话窗口 点击确定后跳转的代码 20
展开全部
---------------------这个是负责倒计时的网页代码---------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>倒计时 </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<script>
var n;
function change()
{
var n=document.getElementById("showtime").value;
if(n!=0)
{
document.getElementById("showtime").value=--n;
n=setTimeout("change()",1000);
}
if(n==0)
{
clearTimeout(n);
document.getElementById("showtime").disabled="";
window.open("open.html","_blank","width=400,height=400,left=400,top=200,resizable=false,statuts=false,toolbar=false,menubar=false,scrollbars=false");
}
}
function showWindow()
{
window.open("open.html","_blank","width=400,height=400,left=400,top=200,resizable=false,statuts=false,toolbar=false,menubar=false,scrollbars=false");
}
</script>
</head>
<body onload="change()">
还有<input type="button" onclick='showWindow()' disabled="disabled" id="showtime" value="6"/>秒钟,跳转
</body>
</html>
--------------------------这个是新弹出的跳转窗口代码-----------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>弹出窗口 </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<body>
<input type="button" value="跳转" onclick="window.location.href='www.baidu.com'" />
</body>
</html>
希望对你有用
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>倒计时 </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<script>
var n;
function change()
{
var n=document.getElementById("showtime").value;
if(n!=0)
{
document.getElementById("showtime").value=--n;
n=setTimeout("change()",1000);
}
if(n==0)
{
clearTimeout(n);
document.getElementById("showtime").disabled="";
window.open("open.html","_blank","width=400,height=400,left=400,top=200,resizable=false,statuts=false,toolbar=false,menubar=false,scrollbars=false");
}
}
function showWindow()
{
window.open("open.html","_blank","width=400,height=400,left=400,top=200,resizable=false,statuts=false,toolbar=false,menubar=false,scrollbars=false");
}
</script>
</head>
<body onload="change()">
还有<input type="button" onclick='showWindow()' disabled="disabled" id="showtime" value="6"/>秒钟,跳转
</body>
</html>
--------------------------这个是新弹出的跳转窗口代码-----------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>弹出窗口 </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<body>
<input type="button" value="跳转" onclick="window.location.href='www.baidu.com'" />
</body>
</html>
希望对你有用
更多追问追答
追问
你这个代码很棒~ 不过不是我想要的那种~ 我要的是倒计时后 时间到了以后自动弹出个提示窗口框点击这个窗口框中的确定 就自动跳转到 设定的另外一个网页. 不一定非是HTML代码 JS 什么的都可以
追答
你是说的窗口中倒计时吗,还是页面倒计时?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是什么语言???C#???
追问
html 的代码
追答
不会!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询