爲什麼我的倒數計時器不工作。我正在使用基思森林插件。已經上傳倒計時jquery到根。 http://keith-wood.name/countdownRef.htmlJquery倒計時器未能加載
CODE:
<!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>Untitled Document</title>
<script type="text/javascript" src="jquery.js"></script>
<link rel="stylesheet" href="jquerycd/jquery.countdown.css" type="text/css" />
<script type="text/javascript" src="jquerycd/jquery.countdown.js"></script>
<style>
defaultCountdown({until: liftoffTime});
</style>
</head>
<body>
<script>
var newYear = new Date();
newYear = new Date(newYear.getFullYear() + 1, 1 - 1, 1);
$('#defaultCountdown').countdown({until: newYear});
$('#removeCountdown').toggle(function() {
$(this).text('Re-attach');
$('#defaultCountdown').countdown('destroy');
},
function() {
$(this).text('Remove');
$('#defaultCountdown').countdown({until: newYear});
}
);
<div id="defaultCountdown"></div>
</script>
</body>
</html>
您是否收到任何javascript錯誤?檢查你的Chrome或Firefox的控制檯。 – DG3 2012-02-27 13:45:50
@ DG3在firefox中沒有檢查錯誤 – Jacob 2012-02-27 13:57:22
您的CSS不相關 - 這就是您放在那裏的JavaScript命令,另外,您已經在腳本標記中獲得了div。 – Archer 2012-02-27 13:59:51