标签:
$.get("test.jsp",
{ name: "cssrain", time: "2008/01/21" }, //要传递的数据
function(data){
alert("返回的数据: " + data);
}
) ;
=================================
$.post("test.jsp",
{ name: "cssrain", time: "2008/01/21" }, //要传递的数据
function(data){
alert("返回的数据: " + data);
}
) ;
==================================
$.ajax({
url:‘Accept.jsp‘,
type:‘post‘, //数据发送方式
dataType:‘html‘, //接受数据格式 (这里有很多,常用的有html,xml,js,json)
data:‘text=‘+$("#name").val()+‘&date=‘+new Date(), //要传递的数据
error: function(){ //失败
alert(‘Error loading document‘);
},
success: function(msg){ //成功
alert( "Data Saved: " + msg );
}
});
在JQuery中,AJAX有三种实现方式:$.ajax() , $.post , $.get()
标签:
原文地址:http://www.cnblogs.com/king-/p/4653463.html