H5页面在微信中禁止下拉露出网页

H5页面在微信中禁止默认事件的执行,js添加代码

$(function () {
 /************微信h5页面禁止下拉露出网页来**************/
        $('body').on('touchmove', function (e) {
            e.preventDefault();
        });
原文地址:https://www.cnblogs.com/leiting/p/7569758.html