无法使用 jquery rollto 插件 - 出现错误“targ 未定义...”

发布于 2024-12-07 02:55:25 字数 891 浏览 1 评论 0原文

我在我的项目中使用jquery 1.3.2。我从滚动到下载页面选择了 1.3.x 选项 ->

http://plugins.jquery.com/node/635/release?api_version[]=1266 并尝试了那里的两个可用选项 -
滚动到 1.4.2 和滚动到 1.4.1。

但我在这两种情况下都收到此错误。

这是代码部分 -

<script type="text/javascript">
$(document).ready(function()
{

if($('tr#manager-'+agencyId).length)>0)
    $('tr#manager-'+agencyId).scrollTo();
});
</script>
<script type="text/javascript" src="/js/jquery.scrollTo.js"></script>

但我在 Firefox 中收到此错误 ->

targ is undefined
attr[key] = targ[pos];  (jquery.scrollto line 157)

在 IE 8 中 ->

Message: 'targ' is null or not an object
Line: 157
Char: 6
Code: 0
URI: http://localhost:9001/js/jquery.scrollTo.js

该错误仅在调用 .scrollTo() 时出现。

任何人都遇到过这个问题。我还需要检查什么?有什么指点吗?谢谢。

I am using jquery 1.3.2 in my project. I selected the 1.3.x option from the scrollto download page ->

http://plugins.jquery.com/node/635/release?api_version[]=1266 and tried with both the available options there -
ScrollTo 1.4.2 and ScrollTo 1.4.1.

but I am getting this error in both cases.

Here is the code part -

<script type="text/javascript">
$(document).ready(function()
{

if($('tr#manager-'+agencyId).length)>0)
    $('tr#manager-'+agencyId).scrollTo();
});
</script>
<script type="text/javascript" src="/js/jquery.scrollTo.js"></script>

But I am getting this error in firefox ->

targ is undefined
attr[key] = targ[pos];  (jquery.scrollto line 157)

And in IE 8 ->

Message: 'targ' is null or not an object
Line: 157
Char: 6
Code: 0
URI: http://localhost:9001/js/jquery.scrollTo.js

The error appears only on calling .scrollTo().

Anybody faced this issue. What else do I need to check? Any pointers? Thanks.

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

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

发布评论

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

评论(2

泪冰清 2024-12-14 02:55:25

您应该提供插件可以滚动到的目标。

You should provide a target that the plugin can scroll to.

赏烟花じ飞满天 2024-12-14 02:55:25
if($('tr#manager-'+agencyId).length)>0)

length 之后有一个额外的括号。

if($('tr#manager-'+agencyId).length)>0)

there's an extra bracket after length.

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