jScrollPane - 不起作用
我正在尝试使用 jScrollPane,但它不起作用。
我将脚本放在 head 部分
<link href="jquery.jscrollpane.css" rel="Stylesheet" type="text/css"/>
<script src="jquery.js" type="text/javascript"/>
<script src="jquery.jscrollpane.min.js" type="text/javascript"/>
<script src="myFile.js" type="text/javascript"/>
然后我有一个元素(内容中有一个表格)
<div class="scroll-pane">
<table>
...
</table>
</div>
并在 myFile.js 中我放置:
$(function () {
$(".scroll-pane").jScrollPane();
});
我的错误是:
对象不支持属性或方法“getElementsByTagName”
我正在使用 jQuery v1.5 和 jScrollPane - v2.0.0beta11 - 2011-07-04
I'm trying to use jScrollPane, but it does not work.
I'm putting the scripts in the head section
<link href="jquery.jscrollpane.css" rel="Stylesheet" type="text/css"/>
<script src="jquery.js" type="text/javascript"/>
<script src="jquery.jscrollpane.min.js" type="text/javascript"/>
<script src="myFile.js" type="text/javascript"/>
Then I have a element (with a table in the content)
<div class="scroll-pane">
<table>
...
</table>
</div>
and in myFile.js i put:
$(function () {
$(".scroll-pane").jScrollPane();
});
My error is:
Object does not support the property or method "getElementsByTagName"
I'm using jQuery v1.5 and jScrollPane - v2.0.0beta11 - 2011-07-04
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我尝试使用另一个 jQuery 版本(1.7)并且它可以工作 - 不知道为什么。
显然 jQuery v1.5 和 jScrollPane - v2.0.0beta11 - 2011-07-04 不能一起工作。
I tried to use another jQuery version (1.7) and it is working - don't know why.
Apparently jQuery v1.5 and jScrollPane - v2.0.0beta11 - 2011-07-04 are not working together.