JQ中的ajax
2018-12-06 本文已影响0人
SuperHong521
$ajax({//执行异步ajax请求
type:'GET/POST',
url:'xxx.php',
data:{'属性名':'属性值'}//规定发送的数据(对象型)
success:function(result返回的数据,status想要的消息,xhr){},
error:function(){}//失败可以不写
})
$ajax({//执行异步ajax请求
type:'GET/POST',
url:'xxx.php',
data:{'属性名':'属性值'}//规定发送的数据(对象型)
success:function(result返回的数据,status想要的消息,xhr){},
error:function(){}//失败可以不写
})