2012-02-17 31 views
0

有人可以讓我知道爲什麼下面的代碼不是在resizescroll射擊console.log? (jQuery 1.7絕對加載)。jQuery生活不調整大小和滾動

<script> 
$(window).live('scroll resize', function() 
{ 
    console.log('am i working?'); 
}); 
</script> 

謝謝。

回答

2

live在jQuery 1.7及以上版本中已棄用。

As of jQuery 1.7, the .live() method is deprecated. 

check Documentation here。相反,利用.on()on documentation

+0

這僅適用於窗口,而不是像這樣:$(窗口)。在( '滾動', '格',函數(){...}); – 2012-09-10 19:46:00