1
<head>
    <title>Mary</title>
    <link href="http://localhost/stylesheet.css" type="text/css" rel="stylesheet">
    <link href="http://localhost/mary/jquery-ui-1.10.3.custom.min.css" type="text/css" rel="stylesheet">
    <script type="text/javascript" src='http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js'></script>
    <script type="text/javascript" src="http://localhost/jscript.js"></script>
    <script type="text/javascript" src="http://localhost/jquery-ui-1.10.3.custom.min.js"/>
</head>

我刚刚完成了有关 jquery ui 的学习,并试图将它包含在我的第一个网页中,但它不起作用。我检查了服务器上的所有链接,它们链接到文档,但是当我检查服务器上的网页时,显示内容的唯一方法是注释掉最后一个脚本标记。但是如果我这样做,我就无法访问 jquery ui,对吗?我很混乱。我很高兴尝试所有这些东西,但我不知道如何使它工作:(非常感谢任何帮助。

4

2 回答 2

1

karthikr 的答案很可能是问题所在,但如果这不起作用,请尝试引用 jquery 本身托管的 URL。

<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
于 2013-11-08T22:08:02.640 回答
0

假设所有静态文件都被正确引用,

<script type="text/javascript" src="http://localhost/jquery-ui-1.10.3.custom.min.js"/>

应该

<script type="text/javascript" src="http://localhost/jquery-ui-1.10.3.custom.min.js"></script>

注意script标签的结尾/>应该是></script>

于 2013-11-08T22:04:33.040 回答