10秒でカウントダウンします.終わったら自動的に別のページにジャンプします.
5176 ワード
html :
<meta http-equiv="Refresh" content="10;URL=http://www.baidu.com">
head
, flash, javascript, js html
<html>
<head>
<title>10 </title>
</head>
<body>
<input type="text" readonly="true" value="10" id="time">
</body>
<script language="javascript">
var t = 10;
var time = document.getElementById("time");
function fun(){
t--;
time.value = t;
if(t<=0){
location.href = "http://www.baidu.com";
clearInterval(inter);
}
}
var inter = setInterval("fun()",1000);
</script>
</html>