0
我有一個變量聲明變量。未定義變量問題
我已經
function employees(){
//init employees...;
}
employees.prototype.getName=function(){
if(ajax.doingStuff){
return;
}
}
$(document).ready(function(){
var ajax=new ajaxCall();
var people=new employees();
$('#option').on('change', function(){
people.getName();
})
})
,當我點擊$('#option)
按鈕,我得到了
Uncaught ReferenceError: ajax is not defined
誰能幫我解決這個問題呢?非常感謝!
「ajaxCall」在哪裏定義? – j08691
哎呀。一些其他地方。和我的console.log ajax在document.ready下響應一個對象。 – Rouge