這是XML文件從一個RSS feed如何顯示使用jQuery XML屬性附加傷害(zRSSFeed腳本內)
<item>
<title>creamy whites</title>
<description><p><a href="/pin/201606520789168653/"><img
src="http://media-cache.pinterest.com/upload/229261437250994034_0HxSxJNv_b.jpg"
></a></p><p>creamy whites</p></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->src
entry.decription.attr(src)
,entry.decription.getAtrribute("src")
(我可能在這裏誤輸入了這些代碼 - 但是當我嘗試它們時,我在Google中檢查了諸如'getAttribute'之類的東西)並且它們都沒有工作。
這是行不通的。輸出是'未定義' - 沒有錯誤出現。謝謝 – aurel 2012-04-14 23:57:27