jquery和jqueryUI冲突

bar*_*art 3 recursion jquery jquery-ui

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>
Run Code Online (Sandbox Code Playgroud)

ale*_*lex 5

你不能只包括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>
Run Code Online (Sandbox Code Playgroud)