IE11浏览器Iframe页面弹层Fixed固定定位出现闪动

解决方法如下,写在IFRAME嵌套的页面下

function IE123123(){
    if(navigator.userAgent.match(/MSIE 10/i) || navigator.userAgent.match(/Trident\/7\./) || navigator.userAgent.match(/Edge\/12\./)) {
        $('body').on("mousewheel", function (event) {
              event.preventDefault();
              var wd = event.originalEvent.wheelDelta;
              var csp = window.document.documentElement.scrollTop;
          window.scrollTo(0, csp - wd);
        });
    }
}

posted on 2016-05-13 16:27  鬼鬼丫404  阅读(732)  评论(0编辑  收藏  举报

导航