TA贡献1863条经验 获得超2个赞
你可以用阿贾克斯方法:
$.ajax({ url: '/script.cgi', type: 'DELETE', success: function(result) { // Do something with the result }});
TA贡献1995条经验 获得超2个赞
$.ajax会有用的。
$.ajax
$.ajax({ url: 'script.php', type: 'PUT', success: function(response) { //... }});
举报