css:

html,body {
    overflow:hidden; 
} 
  

  

 

或者js控制:

$(window).bind(
    'touchmove',
     function(e){
         e.preventDefault(); 
    } 
);