$.ajax({
type:"post",
url:"",
data:{key:val},
dataType:"json",
success: function aa(data) {
}
});
$.post("url",{key:val},function(data){
});
区别在于
ajax 可以设置参数返回 json html xml
post 只能返回html