jquery jscrollpane插件错误
当我尝试在 Safari 4 中实现 jSrollpane 时,出现此错误:
TypeError: Result of expression '$drag[0]' [undefined] is not an object.
然后,当我尝试Chrome 中也有同样的情况:
未捕获类型错误:无法读取未定义的属性“offsetHeight”
但是为什么呢?在FF中运行良好。
有什么想法吗?
I get this error when I try and implement jSrollpane in Safari 4:
TypeError: Result of expression '$drag[0]' [undefined] is not an object.
Then i get this error when i try the same thing in Chrome:
Uncaught TypeError: Cannot read property 'offsetHeight' of undefined
But why? it works fine in FF.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来 jQuery 无法解析子选择器(“parent > child”),因此两者
“$track”和“$drag”被设置为未定义的值:
因此,滚动条不会初始化,并且不会执行任何操作
用“简化”版本替换前面的行可以解决该问题:
It appears that jQuery does not manage to resolve the child selector (“parent > child”), thus both
"$track" and "$drag" are set to undefined values:
As a result, the scrollbar does not initialize, and simply does nothing
Replacing the previous lines with a "dumbed down" version fixes the issue: