HTML + jQuery导致空白页面

时间:2013-05-22 05:43:07

标签: javascript jquery jquery-ui-accordion

我在实现jQuery方面遇到了麻烦 - 特别是复制this exercise from Code Academy。我从this other question on Stack Overflow了解到<script>引用jQuery.js需要放在引用本地JavaScript文件的<script>之前,以便识别$(document).ready();

因此,这里是index.html:

<!DOCTYPE html>
<html>
    <head>
        <title>Behold!</title>
        <link rel='stylesheet' type='text/css' href='http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css'/>   
        <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js" type="text/javascript"></script>
        <script type='text/javascript' src='index.js'></script> 
    </head>
    <body>
        <div id="menu">
            <h3>jQuery</h3>
            <div>
                <p>jQuery is a JavaScript library that makes your websites look absolutely stunning.</p>
            </div>
            <h3>jQuery UI</h3>
            <div>
                <p>jQuery UI includes even more jQuery goodness!</p>
            </div>
            <h3>JavaScript</h3>
            <div>
                <p>JavaScript is a programming language used in web browsers.</p>
            </div>
        </div>
    </body>
</html>

然后这是我的index.js:

$(document).ready(function() {
    $("#menu").accordion({collapsible: true, active: false});
});

在Chrome和IE中,这显示为一个完全空白的页面,没有任何jQuery accordion或文本的痕迹。 如果我忽视某些事情,请告诉我 - 我真的很感激帮助。谢谢!

2 个答案:

答案 0 :(得分:0)

此:

<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.j" type="text/javascript"></script>

应该是这样的:

<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js" type="text/javascript"></script>

答案 1 :(得分:0)

我不知道这个错误是否仅来自copy'n'paste但是文件扩展名不正确(应该是“js”而不是“j”)。

此外,您不包含jQuery本身(仅限jQuery UI)。

使用以下头部区域:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js" type="text/javascript"></script>
<script type='text/javascript' src='index.js'></script>

这些对我有用。