jQuery中AJAX写法
前⾔
在jQuery中AJAX的写法有3种,$ajax,$post,$get这三种。其中$post和$get是简易写法,⾼层的实现,在调⽤他们的时候,会运⾏底层封装好的$ajax。
运⽤
get⽅式⼀
$.get("i", { name: "John", time: "2pm" },
function(data){
alert("Data Loaded: " + data);
});
get⽅式⼆
$.get("test.php", function(data){
alert("Data Loaded: " + data);
});
get⽅式三
$.get("test.php", { name: "John", time: "2pm" } );
get的参数应该可以放在url上,还没试过。
post⽅式⼀
$.post("test.php", { name: "John", time: "2pm" } );
post⽅式⼆
$.post("test.php", $("#testform").serialize());
post⽅式三
$.post("test.php", function(data){
alert("Data Loaded: " + data);
});
ajax写法
$.ajax({
type: "POST",
dataType: "json",
url: "",
data: ""jquery ajax例子
success: function(data){
},
error: function(msg){
}
});
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论