我要开始AJAX可以有人帮忙,指导我应该怎么做,我应该从哪里学习它。 (我有Lynda的会员资格他们有一个关于AJAX的课程[只有2个小时]我觉得这不够。对吧?)。
答案 0 :(得分:0)
jQuery AJAX文档:http://api.jquery.com/jquery.ajax/
我推荐这种方法:
$.ajax({
type: "POST",
url: 'ajax_controller.php', //url to u controller in PHP
data: { //Data transmitted to the controller
id: id,
action: 'delete'
}
}).done(function(result){
console.log(result);//show controller result in console
});