解决方法如下,写在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); }); }}