出现弹出层body滚动

$("#box").on(“click”,function(e){
e.stopPropagation();
e.preventDefault();
$("#box").hide();
});
//ontouchmove 事件
$("#box")[0].ontouchmove=function(e){
e.stopPropagation();
e.preventDefault()
};

猜你喜欢

转载自blog.csdn.net/qq_38773775/article/details/85999923