2013-06-04 61 views

回答

1

給股利一類(比方說, 'scrollThis')。處理touchmove事件的方式是,如果touchmove事件的目標不是div,則防止滾動。否則,讓它發生。

$('body').on('touchmove', function (e) { 
    if (!$('.scrollThis').has($(e.target)).length) //check if the div isn't being scrolled 
     e.preventDefault(); 
}); 

我已經在iOS/android web應用程序中使用過,所以我可以證明它的工作原理。