错误消息:“$(window).width 不是函数”
我正在尝试使用名为“Jscrollhorizontalpane”的 jQuery 滚动条。 当我尝试使用它时,我收到以下错误消息: firebug 控制台中的“$(window).width 不是函数”。
我是 jQuery 新手,这可能是非常基本的,但我仍然不知道这意味着什么以及为什么会出现问题。
滚动条与几个文件捆绑在一起,其中一个名为“jScrollHorizontalPane.js”,我相信它包含滚动条的代码。我尝试用“jQuery”一词替换那里的 $ 符号(以防发生冲突),但它似乎没有帮助。
同样重要的是要补充一点,在同一页面上我使用另一个 jQuery 滚动器(垂直滚动器,而不是上面提到的水平滚动器),它工作得很好。这个代码不使用 $(window).width 但多次使用 $(window)...
有什么想法吗?
i am trying to use a jQuery scrollbar called "Jscrollhorizontalpane".
when i am trying to use it i get the following error message:
"$(window).width is not a function" in firebug's console.
i am new to jQuery do this might be very basic but still, i dont know what that means and why there is a problem.
the scroller comes in a bundle with a few files, one of which is called "jScrollHorizontalPane.js" and i believe it holds the code for the scroller. i tried replacing $ signs there with the word "jQuery" (in case there is a conflict) but it didnt seem to help.
also important to add that on the same page i am using another jQuery scroller (a vertical one as opposed to the horizontal on mentioned above) which works just fine. the code for this one doesnt use $(window).width but uses $(window) many times...
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来你们在某个地方发生了冲突。
我建议首先找到问题的根源;
如果这些都不起作用,则使用实时演示链接更新您的问题。
It sounds like you have a conflict somewhere.
I would suggest finding the route of the problem first;
If none of those work then update your question with a live demo link.
将
$(window).width
更改为$(window).width()
是否可以解决您的问题?does changing
$(window).width
to$(window).width()
solve your problem ?