新闻报道 jquery 插件问题

发布于 2024-10-21 02:12:58 字数 219 浏览 6 评论 0原文

我的“新闻行情”jquery 插件有问题。 当我将鼠标悬停在新闻标题上时,它们的链接类似于 [object object] ,

这里我输入了我的代码:

http:// /bitcont.com/test/news-ticker/

问题是什么?

i have a problem in 'News ticker' jquery plugin.
when i mouseover the news titles their link is something like [object object]

here i put my code:

http://bitcont.com/test/news-ticker/

what is the problem??

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

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

发布评论

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

评论(1

故事↓在人 2024-10-28 02:12:58

你没有做错任何事;我认为插件本身有一个错误。在 runTicker 中,插件

// [object object]
tickerData.newsAttributes[tickerData.currentItem]

在应该打印

// cached value of link.attr("href")
tickerData.newsLinks[tickerData.currentItem]

// cached value of the href HTML attribute
tickerData.newsAttributes[tickerData.currentItem].href

修补它的时候打印出来,然后也许让开发人员知道?

You're not doing anything wrong; I think there's a bug in the plugin itself. In runTicker, The plugin is printing out

// [object object]
tickerData.newsAttributes[tickerData.currentItem]

when it should be printing out either

// cached value of link.attr("href")
tickerData.newsLinks[tickerData.currentItem]

or

// cached value of the href HTML attribute
tickerData.newsAttributes[tickerData.currentItem].href

Patch it, and then maybe let the developer know?

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