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);
});
}
}