type:"post", //说明是使用post提交表单dataType:"json"//说明数据是使用JSONdata:{id:"abc"}, //提交数据,变量id,内容abcPHP:echo $_POST['id'];就能获得传递的值.