使用$ .get()来引用RSS Feed

时间:2012-03-21 06:27:02

标签: javascript xml rss jquery-isotope

在此代码中; $。get('sites.xml',function(d){及其下方, $(d).find('site')。each(function(){参考xml文件。我如何引用RSS Feed?

var $container = $('#container');
var $checkboxes = $('#filters a');

init();

function init(){
    $.get('sites.xml', function (d) {

        $(d).find('site').each(function () {
            var imageUrl = $(this).find('imgurl').text();
            var title = $(this).find('title').text();
            var url = $(this).find('url').text();
            var brief = $(this).find('brief').text();
            var long = $(this).find('long').text();
            var classa = $(this).find('_class').text();

            $('<div class="' + classa + '"></div>').html('<a href="' + url + '"> 
            <img  src="' + imageUrl + '" class="thumbnail" />' + '<h1>' + title + '</h1> 
            </a>').appendTo('#container');

            }); // end each

        initIsotop(); // after adding all elements - init isotop
    }); // end $.get
}

function initIsotop() {
    $container.isotope({
        itemSelector: '.item',
        transformsEnabled: false,    
        animationOptions: {
            duration: 4000,
            easing: 'easeInOutQuad',
            queue: false
        }
    });
}

1 个答案:

答案 0 :(得分:0)

  

问题是如何将代码输入到代码中。抱歉。我正在尝试使用的Feed是一个XML文件。但我不确定如何将该URL包含在此代码中。

从你的代码:

$.get('sites.xml', function (d) {
       ^^^^^^^^^^
          Insert URI here.