load
$("#result"). load(" aaaa.asp #ccc");
get
$.get("aaaa.asp", { action:"get",name:"lulu" },
function(data, textStatus){
$ ("#result") .html(data);
//alert(data)
//alert(textStatus)
post
$ .post("aaaa.asp", { action:"post",name:"lulu" },
function(data, textStatus){
$("#result").html(data);
});
ajax
$.ajax({
type: "get",
url: "http://www.jb51.net/rss",
beforeSend: function(XMLHttpRequest){
//$('
데이터 로드 중입니다. 잠시 기다려 주세요
')
//.insertAfter($("#btn_ajax"))
/ /.fadeIn('slow')
//.animate({opacity: 1.0}, 3000)
//.fadeOut('slow', function() {
//$(this). 제거();
// });
},
성공: function(data, textStatus){
$("#result").html(""); ("item",data).each (function(i, domEle){
$("#result").append("
" $(domEle).children("title").text( ) "") ;
})
},
complete: function(XMLHttpRequest, textStatus){
//alert("로드가 완료되었습니다! ");
},
error: function(){
//오류 처리 요청
}
});