在使用jQuery的ajax方法獲取服務器返回的數(shù)據(jù)時,需要通過回調(diào)函數(shù)的參數(shù)來獲取值,以下為示例代碼:
$.ajax({ url: "test.php", type: "POST", data: { name: "張三", age: 18 }, success: function(result){ $("p").text("返回值:" + result); } });
在上面的代碼中,當服務器返回數(shù)據(jù)后,jQuery會調(diào)用success回調(diào)函數(shù),并把返回值作為參數(shù)傳入其中,我們通過result參數(shù)獲取返回值。在示例中,我們通過jQuery的text方法把返回值設置給p標簽。