JQ中的ajax

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

你可能感兴趣的:(JQ中的ajax)