2011-03-23 81 views

回答

1

您可以通過綁定多個jQuery的事件是這樣的:

$('.container').bind('click scroll', function() {  
    alert('scroll or click occurred') 
}); 
相關問題