GET支持三种方式:
1.完整路径
$.get("test.php?url=baidu",function(response,status,xhr) {
$("#box").html(response);
});
2.拼接路径
$("#btn").click(function() {
$.get("test.php","url=baidu",function(response,status,xhr) {
$("#box").html(response);
});
})
3.添加参数
$("#btn").click(function() {
$.get("test.php",{"url":"baidu"},function(response,status,xhr) {
$("#box").html(response);
});
})
POST支持两种方式:
1.拼接参数
$("#btn").click(function() {
$.post("test.php","url=baidu",function(response,status,xhr) {
$("#box").html(response);
});
})
2.拼接字符串
$("#btn").click(function() {
$.post("test.php",{"url":"baidu"},function(response,status,xhr) {
$("#box").html(response);
});
})
第四个参数:
type:传递的是需要返回的数据类型