我在'新闻自动收报机'jquery插件中遇到问题。 当我鼠标悬停在新闻标题上时,他们的链接就像[对象对象]
这里我把我的代码:
http://bitcont.com/test/news-ticker/
问题是什么?
答案 0 :(得分:1)
你没有做错任何事;我认为插件本身存在一个错误。在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
修补它,然后让开发人员知道吗?