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

$(function () {
 /************微信h5页面禁止下拉露出网页来**************/
        $('body').on('touchmove', function (e) {
            e.preventDefault();
        });

 

相关文章:

  • 2022-01-06
  • 2021-11-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2022-01-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-13
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案