输入banner图图片脚本导航/分类

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

  1. 获取到document,var doc = document.getElementById('mainFrame' ).contentDocument || document.frames['mainFrame'].document;

  2. 添加触摸事件

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