为什么 jQuery 倒计时不适用于记录的代码?

发布于 2024-09-24 03:55:12 字数 510 浏览 3 评论 0原文

我在这里使用这个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亣腦蒛氧 2024-10-01 03:55:12

你的配置有点乱。您配置了倒计时插件两次(在 effect-ini.js 中和 HTML 页面中的

  1. 删除索引页中

  2. 将您的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.

  1. Remove the contents of your <script> tag in your index page (the one that starts with <script type="text/javascript" charset="utf-8">

  2. Replace your effect-ini.js with this: http://pastebin.com/ULtGSAUt

And it should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文