jQuery根本不工作

时间:2013-10-15 17:25:32

标签: javascript jquery html ajax json

我正在尝试使用jQuery文件使用jQuery填充我的HTML,并使用getJSON调用加载。不幸的是,我的jQuery似乎都没有工作。

这是我的HTML:

<!doctype html>
<html>
  <head>
     <title>Lab 4</title>
     <script type="text/javascript" src="resources/jquery-1.4.3.min.js"></script>
     <script src="lab4.js"></script>
  </head>
  <body>
    <div id="song-template">
      <a id="site" href="#"><img id="coverart" src="images/noalbum.png"/></a>
      <h1 id="title"></h1>
      <h2 id="artist"></h2>
      <h2 id="album"></h2>
      <p id="date"></p>
      <p id="genre"></p>
    </div>
  </body>
</html>

我的一些JSON文件,位于名为resources的子目录中:

[
    {
        "name" : "Short Skirt, Long Jacket",
        "artist" : "Cake",
        "album" : "Comfort Eagle",
        "genre" : "Rock",
        "year" : 2001,
        "albumCoverURL" : "images/ComfortEagle.jpg",
        "bandWebsiteURL" : "http://www.cakemusic.com"
    }
]

我的JavaScript:

function updateHTML(result) 
{
    var templateNode = $("#song-template").clone(true);
    $("#song-template").remove();

    $.each(result, function(key, song)
    {
        var songNode = templateNode.clone(true);
        songNode.children("#site").href(song.bandWebsiteURL);
        songNode.children("#coverart").src(song.albumCoverURL);
        songNode.children("#title").text(song.name);
        songNode.children("#artist").text(song.artist);
        songNode.children("#album").text(song.album);
        songNode.children("#date").text(song.year);
        songNode.children("#genre").text(song.genre);
        $("body").append(songNode);
    });
}

function loadJSON() 
{
    var result = $.getJSON("resources/lab4.json");
    updateHTML(result)
}

$("#site").click(function() 
{
    loadJSON();
});

到目前为止的问题是: 1.我在网站ID上的点击监听器根本不起作用。我也试过使用coverart,没有骰子。 2.当我显式调用loadJSON();我在调试器中遍历updateHTML,我的克隆或删除都没有做任何事情,我的.each只是被忽略了。 如果有人能指出我做错了什么,我将不胜感激。我是所有这些jquery和javascript的新手,并不知道我在做什么。

2 个答案:

答案 0 :(得分:5)

您的loadJSON()方法存在问题。 getJSON不返回调用的结果。试试这个

function loadJSON() 
{
  $.getJSON("resources/lab4.json", updateHTML);
}

此外,您应该在准备DOM时绑定事件。

$(document).ready(function(){
$("#site").click(function() 
{
    loadJSON();
});
}})

答案 1 :(得分:2)

您必须将您的点击监听器放在doc ready处理程序中:

$(function(){
    $("#site").click(function(){
       loadJSON();
    });
});