获取iframe 的document方式,并且防止触摸滑动_html/css_WEB-ITnose
程序员文章站
2022-05-02 15:39:56
...
获取到document,var doc = document.getElementById('mainFrame' ).contentDocument || document.frames['mainFrame'].document;
添加触摸事件
doc.addEventListener('touchmove',function(event){ event.preventDefault();},false);