我是網絡開發新手,這是我的第一個Chrome擴展。這裏是我的腳本來獲取和解析RSS提要:從RSS訂閱項獲取視頻的鏈接
$(document).ready(function() {
// FETCH THE RSS FEEDS AND PARSE THEM
$.get(rssurl, function(data) {
var $xml = $(data);
$xml.find("item").each(function() {
var $this = $(this),
item = {
title: $this.find("title").text(),
link: $this.find("link").text(),
description: $this.find("description").text(),
pubDate: $this.find("pubDate").text(),
url : $this.find("enclosure").attr("url"),
author: $this.find("author").text()
};
// ADD IT TO THE ARRAY
items.push(item);
if(items.length == 1){
$(".title").html(item.title);
$(".description").html(item.url);
$(".author").html(item.author);
$(video).attr({"src" : item.url});
}
});// end of each()
});// end of $.get()
});
但問題是這樣的:
url : $this.find("enclosure").attr("url"),
的想法是讓視頻播放,儘管它在.mp4
是其中沒有。
下面是我解析提要:http://feeds.podtrac.com/tTKj5t05olM $
注:我已經可以在我的鉻清單
所以...你只是想獲取mp4格式的項目? – Chickenrice
是的,並顯示其視頻 –