使用最新 jQuery 1.7.1 可能存在 jQuery 工具提示错误 - d 未定义

发布于 2025-01-02 15:59:46 字数 767 浏览 1 评论 0原文

尝试做一个 jQueryTOOLS 工具提示的简单示例(http://flowplayer.org/tools/demos/ index.html) 不断给出:

IE7,8,9 报告: 无法获取属性“jquery”的值:对象为 null 或未定义 jquery.tools.min.js,第 25 行字符 1057

FireFox 将其报告为:“d 未定义”

我正在使用最新的 jQuery 和 jQuery UI:

  1. jquery-1.7.1.min.js
  2. jquery-ui-1.8.17。 custom.min.js
  3. jquery-ui-1.8.17.custom.css
  4. (然后我必须执行 jQuery.noConflict(); 因为之前 使用 $) 多年的工作
  5. ,然后我包括 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:

  1. jquery-1.7.1.min.js
  2. jquery-ui-1.8.17.custom.min.js
  3. jquery-ui-1.8.17.custom.css
  4. (I then have to do the jQuery.noConflict(); because of previous
    years of work using $)
  5. 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 技术交流群。

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

发布评论

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

评论(1

卖梦商人 2025-01-09 15:59:46

我有同样的问题所以我用这个代替。 http://docs.jquery.com/Plugins/Tooltip

第一次工作。只需更改

                $("#eleId a[title]").tooltip();

                $("#eleID a").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

                $("#eleId a[title]").tooltip();

to

                $("#eleID a").tooltip();

and add the CSS.

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