H5页面在微信中禁止默认事件的执行,js添加代码
$(function () {
/************微信h5页面禁止下拉露出网页来**************/
$('body').on('touchmove', function (e) {
e.preventDefault();
});
H5页面在微信中禁止默认事件的执行,js添加代码
$(function () {
/************微信h5页面禁止下拉露出网页来**************/
$('body').on('touchmove', function (e) {
e.preventDefault();
});