我有對象myObject
,裏面我有功能,裏面我有$.ajax({
其中有complete: function(xmlHttp){
。在那個函數裏我想調用myObject
中定義的setResult。怎麼做?JavaScript面向對象與jQuery
function myObject() {
this.setResult = setResult;
function setResult(result) {
this.result = result;
}
function execute() {
$.ajax({
complete: function(xmlHttp){
(?) setResult(jQuery.parseJSON(xmlHttp.responseText));
}
});
}