为什么 jQuery 倒计时不适用于记录的代码?
我在这里使用这个 jQuery 倒计时插件,它看起来很简单,但我一定错过了一些东西。这是我的代码
$(document).ready(function(){
var austDay = new Date();
console.log(austDay.getFullYear() + 1);
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('#countdown').countdown({until: austDay, format: 'dHMS'});
});
<div id="countdown"></div>
这是页面
I am using this jQuery countdown plugin here and it seems pretty straightforward but i must be missing something. Here is my code
$(document).ready(function(){
var austDay = new Date();
console.log(austDay.getFullYear() + 1);
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('#countdown').countdown({until: austDay, format: 'dHMS'});
});
<div id="countdown"></div>
Here is the page
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的配置有点乱。您配置了倒计时插件两次(在
effect-ini.js
中和 HTML 页面中的标记中)。另外,您的effect-ini.js 中存在语法错误。
删除索引页中
标记的内容(以
将您的effect-ini.js 替换为:http: //pastebin.com/ULtGSAUt
它应该可以工作。
Your configuration was kind of messy. You configured the countdown plugin twice (in
effect-ini.js
and in a<script>
tag in your HTML page). Also, you had syntax errors in your effect-ini.js.Remove the contents of your
<script>
tag in your index page (the one that starts with<script type="text/javascript" charset="utf-8">
Replace your effect-ini.js with this: http://pastebin.com/ULtGSAUt
And it should work.