jQuery 滑块不显示

发布于 2024-09-14 13:59:35 字数 305 浏览 0 评论 0原文

所以我想我应该从小事做起……

不行。

jquery UI 滑块不显示...此页面有什么问题?

http://www.bcidaho.com/healthcare-reform/timeline.asp

我在头部、UI 核心和 UI 滑块 js 文件中调用了 jquery 库...

我的错误是“对象不支持此属性或方法”???

so i figured i would start small...

no go.

the jquery UI slider does not display... what is wrong with this page?

http://www.bcidaho.com/healthcare-reform/timeline.asp

i have the jquery library called in the head, the UI core, and the UI slider js files...

my error is "object does not suppor this property or method"???

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

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

发布评论

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

评论(1

ヅ她的身影、若隐若现 2024-09-21 13:59:35

您在页面中包含了两次 jQuery,因此它会删除第一个实例中的所有插件。你有这个是正确的:

<script src="/js/jquery-1.3.2.js" type="text/javascript"></script> 
<script src="/js/ui.core.js" type="text/javascript"></script> 
<script src="/js/ui.slider.js" type="text/javascript"></script>  

但后来你又得到了这个(第 47 行),需要将其删除:

<script src="/js/jquery-1.3.2.js" type="text/javascript"></script> 

You're including jQuery twice in the page, so it's erasing any plugins on the first instance. You have this which is correct:

<script src="/js/jquery-1.3.2.js" type="text/javascript"></script> 
<script src="/js/ui.core.js" type="text/javascript"></script> 
<script src="/js/ui.slider.js" type="text/javascript"></script>  

But then later you have this again (line 47), which needs to be removed:

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