jquery 和 jqueryUI 冲突

发布于 2024-09-29 01:33:49 字数 601 浏览 3 评论 0原文

jquery 1.3.2 与 jqueryui 1.8.4 冲突吗?我收到错误“递归过多”(使用下面的代码)。

当我将 jquery 1.3.2 与 jqueryui 1.7.2 结合使用时,我没有收到此错误,但它破坏了我的代码...

是否有某个地方有一个参考表,哪个 jquery 版本适用于哪个 jqueryui 代码?

<html>
<head>
<title>This is the title</title>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js'></script>
</head>
<body>nothing here</body>
</html>

Is jquery 1.3.2 conflicting with jqueryui 1.8.4? I get the error "Too much recursion" (using the code below).

When I combine jquery 1.3.2 with jqueryui 1.7.2 I don't get this error, but it breaks my code...

Is there somewhere a reference table which jquery version works with which jqueryui code?

<html>
<head>
<title>This is the title</title>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js'></script>
</head>
<body>nothing here</body>
</html>

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

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

发布评论

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

评论(2

梦幻的味道 2024-10-06 01:33:49

不能只包含 2 个最新版本吗?为我工作过很多项目。

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script> 
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>

Can't you just include the 2 most recent versions? Works for me on a number of projects.

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script> 
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
念﹏祤嫣 2024-10-06 01:33:49

是的,这些版本之间存在冲突——
我陷入了困境,因为Drupal不喜欢比1.3.2更新的JQuery——我读到有人有同样的问题,因为Greasemonkey不能与任何高于1.3的JQuery一起工作.2 也可以。

我找到了这张票:
http://bugs.jqueryui.com/ticket/6689

那里发布了一个 .zip 文件使用 JQuery UI 库的修改版本。我在尝试使用 ui.dialog 时遇到此错误 - 我刚刚将修改后的库的那部分复制到我的代码中并且它可以工作。

Yes there is a conflict between these versions --
and I got stuck because Drupal doesn't like JQuery newer than 1.3.2 -- I read somebody having the same issue because Greasemonkey doesn't work with any JQuery above 1.3.2 either.

I found this ticket:
http://bugs.jqueryui.com/ticket/6689

There is a .zip file posted there with a modified version of the JQuery UI library. I was getting this error while trying to use ui.dialog -- I just copied that part of the modified library into my code and it works.

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