好的,我已經建立了一個div點擊處理程序,但由於某種原因它在document.ready
上激發,我無法弄清楚爲什麼。這裏是我的代碼:爲什麼我的點擊處理程序正在文檔上運行?
function statusCallback(status){
//THIS IS THE JSONP CALLBACK RECEIVED FROM THE SERVER
if(status.title==null){
$('#core').attr('class','play');
$('#button').animate({marginLeft:'350px'},2000,'easeOutCubic',function(){
$('#button').click(initialBinder());
});
}else{
}
}
function initialBinder(){
$('#button').unbind('click');
$('#core').attr('class','load');
$('#button').animate({marginLeft:'0px'},2000,'easeOutCubic',function(){
$.ajax({
url:'http://24.182.211.76/status.php',
crossDomain:true,
dataType:'jsonp'
});
});
}
$(document).ready(function(event){
$('#button').click(initialBinder());
});
打我吧:( – Aaron 2012-01-28 03:12:34
工作!永遠不會知道這一點。謝謝! – nkcmr 2012-01-28 03:13:05
@Tegeril - 是的,我打字憤怒!:) – 2012-01-28 03:13:50