我正在尝试使用Jquery .ajax {type:get},我无法弄清楚成功函数是如何工作的,文档只是没有为我删除它。
你们也知道任何好的Jquery书吗?不知怎的,我只知道我会一直使用这个,我也可以学习它。
答案 0 :(得分:2)
Ajax的正确语法如下:
jQuery.ajax({
url: "", //here you need to give the full path of the URL.
cache: true/false, //choose any one true if you want to enable the cache.
type: "get/post", // any type which you want to choose to post the data.
dataType: "text/html/json/jsonp/xml", //In your case choose the html.
success: function(returnData){
//here the returnData will be data that you print in file given in URL.
alert(returnData);
$(".someDiv").append(returnData); //To answer #3
},
error: function(a,b,c){
//call when any error occur.
}
});
我希望这会对你有所帮助。
答案 1 :(得分:2)
在成功函数中
$.ajax({ success : function(retrunValues) { alert( retrunValues); } });
您可以从后端页面获取任何数据。喜欢任何查询或任何事情的结果检查这个。
backendpage.php
<?php
echo "this data will be printed on the main page with ajax call";
?>
因此,php页面中的这些数据将位于retrunValue
的{{1}}中。然后您可以按照自己喜欢的方式使用它。