使用最新 jQuery 1.7.1 可能存在 jQuery 工具提示错误 - d 未定义
尝试做一个 jQueryTOOLS 工具提示的简单示例(http://flowplayer.org/tools/demos/ index.html) 不断给出:
IE7,8,9 报告: 无法获取属性“jquery”的值:对象为 null 或未定义 jquery.tools.min.js,第 25 行字符 1057
FireFox 将其报告为:“d 未定义”
我正在使用最新的 jQuery 和 jQuery UI:
- jquery-1.7.1.min.js
- jquery-ui-1.8.17。 custom.min.js
- jquery-ui-1.8.17.custom.css
- (然后我必须执行 jQuery.noConflict(); 因为之前 使用 $) 多年的工作
- ,然后我包括 jQuery Tools v1.2.6
然后我尝试绝对基本的测试,就像他们在他们的页面上所做的那样:http://flowplayer.org/tools/demos/tooltip/index.html
我不断收到该错误。我尝试过 IE7,8,9,Chrome,FF,Safari,结果相同。知道我缺少什么吗?
Trying to do a simple example of a jQueryTOOLS Tooltip (http://flowplayer.org/tools/demos/index.html) keeps giving:
IE7,8,9 reports:
Unable to get value of the property 'jquery': object is null or undefined
jquery.tools.min.js, line 25 character 1057
FireFox reports it as: "d is undefined"
I'm using the latest jQuery and jQuery UI:
- jquery-1.7.1.min.js
- jquery-ui-1.8.17.custom.min.js
- jquery-ui-1.8.17.custom.css
- (I then have to do the jQuery.noConflict(); because of previous
years of work using $) - then I'm including jQuery Tools v1.2.6
I then try the absolute basic test just like they have on their page:http://flowplayer.org/tools/demos/tooltip/index.html
and I keep getting that error. I have tried IE7,8,9,Chrome,FF,Safari all with same result. Any idea what I'm missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有同样的问题所以我用这个代替。 http://docs.jquery.com/Plugins/Tooltip
第一次工作。只需更改
并
添加 CSS 即可。
I had the same issue so I used this instead. http://docs.jquery.com/Plugins/Tooltip
Worked first time. Just had to change
to
and add the CSS.