无法使用 jquery rollto 插件 - 出现错误“targ 未定义...”
我在我的项目中使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该提供插件可以滚动到的目标。
You should provide a target that the plugin can scroll to.
length
之后有一个额外的括号。there's an extra bracket after
length
.