当鼠标悬浮的时候禁止页面滚动
$("#product_h").mouseenter(function(){
var top = $(document).scrollTop();
$(document).on('scroll.unable',function (e) {
$(document).scrollTop(top);
})
});
当鼠标移开的时候允许页面滚动
$("#product_h").mouseleave(function(){
$(document).unbind("scroll.unable");
});