3

在此之前我从未使用过jQuery,但我会解释我想要做什么。

索引.html

<!DOCTYPE html>
<html>
    <head>
        <title>My Awesome Website</title>
        <link href="style.css" rel="stylesheet" type="text/css"/>
        <link rel="shortcut icon" href="/favicon.ico" />
        <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    </head>
    <body>

<!--    <iframe width="100%" height="175" frameborder="0" scrolling="no" src="navbar.html"></iframe> I used to use this - but i cant have dropdown menus. -->
            <!-- This is my problem -->
        <script>
                $('#navbar').load('./navbar.html');
        </script>
        <noscript>
            <h1>Please enable Javascript!</h1>
        </noscript>

        <div id="container">
                <!-- Content Here -->
        </div>

    </body>
</html>

导航栏.html

<div id="navbar">
        <li><object width="64" height="64" data="favicon.svg" type="image/svg+xml"></object></li>
        <li><object width="64" height="64" data="icons/tech.svg" type="image/svg+xml"></object></li>
        <li><object width="64" height="64" data="icons/games.svg" type="image/svg+xml"></object></li>
        <li><object width="64" height="64" data="icons/contact.svg" type="image/svg+xml"></object></li>
</div>

所以我在这里尝试做的是有许多 HTML 页面都链接到一个导航栏 html 页面,所以当我更改 navbar.html 时,我不必更改每一页。

我这里已经有另一个问题Davor Milnaric建议“如果你使用 jquery,你可以尝试使用 '.load()' 函数。api.jquery.com/load”但我无法让它工作。我究竟做错了什么?我如何解决它?任何帮助将非常感激。

4

2 回答 2

11

你需要做两件事:

  1. 使用 $(document).ready() -在这里阅读;所有 jQuery 代码都必须像这样包装:

    $(document).ready(function(){
    
        //jquery code goes here....        
    
    });
    
  2. 改变

    $('#navbar').load('./navbar.html');

$('#container').load('./navbar.html');

..你没有 id="navbar" 的元素,根据这个

如果选择器没有匹配任何元素——在这种情况下,如果文档不包含具有 id="result" 的元素(在我们的例子中是“navbar”)——将不会发送 Ajax 请求。

于 2013-05-26T02:00:19.630 回答
3

您也可能需要等待 DOM 加载。

    <script>
        $(document).ready(function() {
            $('#result').load('navbar.html #navbar', function() {
                alert("loaded");
            });
        });
    </script>

    <div id="result">
    </div>
于 2013-05-26T01:40:57.620 回答