当我从网址将jQuery导入我的HTML时,我可以让我的手风琴工作,但如果是从我的电脑导入它却没有。我知道我可能导入了错误的文件,如果有,有办法知道吗?
<head>
<!--Is my javascript-->
<script type="text/javascript" src="JSabout.js"></script>
<!--Is what I'm importing-->
<script type="text/javascript" src="jquery-ui/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery-ui/jquery-ui.js"></script>
<script type="text/javascript" src="jquery-ui/external/jquery/jquery.js"></script>
</head>
这不起作用
<head>
<!--Is my javascript-->
<script type="text/javascript" src="JSabout.js"></script>
<!--Is what I'm importing-->
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/dot-luv/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
但这确实
我也在尝试使用主题(Dot Luv)
答案 0 :(得分:3)
jQuery UI依赖于jQuery。
在工作示例中导入jQuery,然后导入jQuery UI。
在非工作示例中,您导入jQuery UI,然后导入非缩小版本的jQuery UI(不要这样做,坚持一个版本),然后导入jQuery,到时为止已经太晚了。
与本地无关。你已经改变了脚本的顺序。