これは実用的なフィドルです。http://jsfiddle.net/bpBtC/1/
しかし、このhttp://jsfiddle.net/bpBtC/131/は同じ方法では機能しませんか?
(XML フィードを使用する他のすべての Web サイトも同じ方法で失敗します。なぜですか?)
$(document).ready(function () {
$.ajax({
type: "GET",
url: "http://www.blogger.com/feeds/2399953/posts/default",
dataType: "xml",
success: xmlParser,
dataType: 'jsonp'
});
});
function xmlParser(xml) {
$(xml).find("entry").each(function () {
$(".entirecont").append($(this).find('title').text());
});
}