$.ajax({
type: "get",
url: "http://www.jb51.net/rss",
beforeSend: function(XMLHttpRequest){
//$('
Data loading, please wait
')
//.insertAfter($("#btn_ajax"))
//.fadeIn('slow')
//.animate({opacity: 1.0}, 3000)
//.fadeOut('slow', function() {
//$(this).remove();
// });
},
success: function(data, textStatus){
$("#result").html("");
$("item",data).each (function(i, domEle){
$("#result").append("
" $(domEle).children("title").text() "") ;
});
},
complete: function(XMLHttpRequest, textStatus){
//alert("Loading completed! ");
},
error: function(){
//Request error handling
}
});