jQuery 新闻行情指示器 - 无法在我的网站上运行

发布于 2024-12-14 15:10:51 字数 455 浏览 1 评论 0原文

我正在尝试使用 http://www.jquerynewsticker.com 中的 jQuery 新闻代码,但似乎无法使其发挥作用。

我已经审查了代码主页上的代码,审查/比较了我的标记和代码位置,尝试使用 Firebug 跟踪代码,但它仍然无法运行。也许我在某个地方犯了一个错误,但我找不到它,或者也许还有其他一些我错过的事情。

我已将我正在使用的代码放在:

http://www.homes- in-naperville.com/banana.html

我欢迎评论,这将帮助我找到一个解决方案,使其正常工作。

I'm trying to use the jQuery news ticker code from http://www.jquerynewsticker.com but seem to be unable to make it work.

I've reviewed the code on the code's home page, reviewed / compared my markup and code placement, tried to follow the code with Firebug and it still doesn't function. Perhaps I've made a mistake somewhere but I can't find it or perhaps there's some other thing I've missed.

I've put the code I'm using at:

http://www.homes-in-naperville.com/banana.html

I would welcome comments that would help me lead to a solution to get it working.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

心房敞 2024-12-21 15:10:51

在您网站的 javascript 中,您已将 javascript 直接放入页面中,而没有 DOM 就绪处理程序,而且语法也有点偏离。

将其更改为以下内容,它应该可以工作:

<script type="text/javascript">
    $(function () {
        $('#ticker').ticker({
            speed: "0.10",
            pauseOnItems: "5000",
            fadeInSpeed: "600",
            fadeOutSpeed: "900"
        });
    });
</script>

In the javascript on your site you have put the javascript directly in the page without the DOM ready handler, and also the syntax is a little off.

Change it to the following and it should work:

<script type="text/javascript">
    $(function () {
        $('#ticker').ticker({
            speed: "0.10",
            pauseOnItems: "5000",
            fadeInSpeed: "600",
            fadeOutSpeed: "900"
        });
    });
</script>
少年亿悲伤 2024-12-21 15:10:51

将此脚本附加到您的网站

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>

attach this script to your site

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文