Jquery成功概念

时间:2013-02-27 05:00:01

标签: jquery

我正在尝试使用Jquery .ajax {type:get},我无法弄清楚成功函数是如何工作的,文档只是没有为我删除它。

  1. 当我.ajax {get} page.php从page.php获取的代码
  2. 你在Jquery中用来获取GET数据的变量/函数是什么(我用PHP $ _get来思考)
  3. 当我从page.php获取数据时,它将以完整的HTML格式准备好应用于页面。我需要做的就是在现有数据下面发布。我会在DIV上使用.appendto()我想要粘贴的html内容吗?
  4. 你们也知道任何好的Jquery书吗?不知怎的,我只知道我会一直使用这个,我也可以学习它。

2 个答案:

答案 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}}中。然后您可以按照自己喜欢的方式使用它。