jquery 和 jqueryUI 冲突
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不能只包含 2 个最新版本吗?为我工作过很多项目。
Can't you just include the 2 most recent versions? Works for me on a number of projects.
是的,这些版本之间存在冲突——
我陷入了困境,因为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.