获取iframe 的document方式,并且防止触摸滑动

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

  2. 添加触摸事件

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

你可能感兴趣的:(获取iframe 的document方式,并且防止触摸滑动)