本帖最後由 luckiejacky 於 2017-2-14 13:54 編輯
點解硬系讀唔到description?- jQuery(function($)
- {
- $("#rss-feeds").rss("http://rss.weather.gov.hk/rss/SeveralDaysWeatherForecast_uc.xml",
- {
- entryTemplate:
- "title: {title}"
-
- }).show();
- })
複製代碼- var rssurl = "http://rss.weather.gov.hk/rss/SeveralDaysWeatherForecast_uc.xml";
-
- document.write(rssurl);
-
- $.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(),
- //author: $this.find("author").text()
- }
- //Do something with item here...
- document.write(item.title);
- });
- });
複製代碼 UP MUD 春?
|