jquery中的AJAX请求会阻止所有其他Javascript在页面上运行

时间:2014-03-27 18:47:19

标签: javascript jquery ajax xml

我有一个AJAX调用,禁止所有其他JavaScript在页面上运行。如果我删除以下代码行,一切都很好。我写错了吗?

$.ajax({
  type: "GET",
  url: 'http://vimeo.com/api/v2/album/1822727/videos.xml',
  dataType: "xml",
  success: function(xml) {
    $(xml).find('video').each(function(){

      var videoID = $(this).find('id').text();
      var imgURL = $(this).find('thumbnail_large').text();
      $('#galThms').prepend('<li id="' + videoID + '" style="background-image:url(' + imgURL + ');"><a href="#playVideo"></a></li>');

    });
  }
});

0 个答案:

没有答案