小菜一枚,ajax使用记录一下:
$.ajax({
url:\'www.xxx.com?ajax.php\',//这里写调用的地址
type:\'POST\',//提交方式get或post
data:{id:,name:},//这里写要传入的数据
dataType:\'JSON\',//返回的数据类型
success:function(data){//回调函数
//在这里处理返回的json数据eval
}
});
php程序里处理:
1.post或get传过来的数据,直接用$_GET或$_POST获取
2.通过查询数据返回json,json_encode();