欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

获取iframe 的document方式,并且防止触摸滑动_html/css_WEB-ITnose

程序员文章站 2022-05-02 15:39:56
...
  1. 获取到document,var doc = document.getElementById('mainFrame' ).contentDocument || document.frames['mainFrame'].document;

  2. 添加触摸事件

  3. doc.addEventListener('touchmove',function(event){   event.preventDefault();},false);