1、get方式
$.get(url,function(){},'json');
2、post方式
$.post(url,data,function(r){},'json');
3、ajax方式
$.ajax({
url:url,
type:"GET/POST",
data:{
name:name,
password:password,
},
dataType:'json',
success:function(r){
}
});
删除单个(jq);
html
删除多个(jq)
html
php