DIV CSS 佈局教程網

jquery倒計時
編輯:JQuery常見問題     
使用javascript和jquery實現了倒計時功能,可以將彈出“時間到了”對話框還成你需要的代碼。
查看效果:http:///keleyi/phtml/time/

以下是代碼:

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery實現倒計時--</title>
<script type="text/javascript" src="http:///keleyi/pmedia/jquery-1.9.1.min.js"></script>
</head>
<body>

使用jquery實現倒計時,<a href="http:///a/bjac/ac398357acb82782.htm" target="_blank">原文</a>

再過<span id="sec_keleyi_com">5</span>秒,就會彈出對話框
<script type="text/javascript">
$(function () {
setTimeout("lazyGo();", 1000);
});
function lazyGo() {
var sec_keleyi_com = $("#sec_keleyi_com").text();
$("#sec_keleyi_com").text(--sec_keleyi_com);
if (sec_keleyi_com > 0)
setTimeout("lazyGo();", 1000);
else {
timeup();
}

}
function timeup() {
alert("時間到了");
//可以換成實際需要的代碼,例如:
//window.location.href = "http://";
}
</script>

</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved