2012-04-14 75 views
0

這是XML文件從一個RSS feed如何顯示使用jQuery XML屬性附加傷害(zRSSFeed腳本內)

<item> 
<title>creamy whites</title> 
<description>&lt;p&gt;&lt;a href="/pin/201606520789168653/"&gt;&lt;img 
src="http://media-cache.pinterest.com/upload/229261437250994034_0HxSxJNv_b.jpg" 
&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;creamy whites&lt;/p&gt;</description> 
</item> 

片斷現在這是已經在ZRRSfeed代碼:

// Add feed row 
html += '<li class="rssRow '+row+'">' + 
    '<'+ options.titletag +'><a href="'+ entry.link +'" title="'+   
     feeds.title +'" target="'+ options.linktarget +'">' 
     + entry.description +'</a></'+ 
     options.titletag +'>' 

現在不是得到entry.decription我想獲得的src值是entry.decription 內我曾嘗試: entry.decription[src]entry.decription[src].val()entry.decription->srcentry.decription.attr(src),entry.decription.getAtrribute("src")(我可能在這裏誤輸入了這些代碼 - 但是當我嘗試它們時,我在Google中檢查了諸如'getAttribute'之類的東西)並且它們都沒有工作。

回答

0

嘗試

$(entry.description).find('img').attr('src') 
+0

這是行不通的。輸出是'未定義' - 沒有錯誤出現。謝謝 – aurel 2012-04-14 23:57:27

1

試試這個..

var src = $('entry.description')find('img').attr('src'); 

console.log(src); // debug using console firebug in firefox 
//or developer tools in chrome 
//the output should be the url of img 

然後更換entry.description即位於錨標記內的SRC。

相關問題