所以我的挑战是在同一个文档中制作两个不同的 GUI 元素,每个元素都需要一个单独的库。其中一个需要传统的 JQuery-ui 库,另一个需要指向此的链接:
<script src="http://cdn.jquerytools.org/1.2.7/full/jquery.tools.min.js"></script>
我基本上已经为使它们都工作而进行了一场战争,最后我将上面的代码放在 JQuery 和 Jquery-ui-libraries 的加载之间。如果我把它放在前面,那么我就不能调用它库中的方法。如果我把它放在后面,那么我无法调用 JQuery-ui 库中的方法。谁可以给我解释一下这个?
这是我的工作头标签:
<head>
<title>Experimentation</title>
<link type="text/css" rel="stylesheet" href="stylingExp.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="http://cdn.jquerytools.org/1.2.7/full/jquery.tools.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
</head>