仅禁用 IE 11 的插件

问题描述 投票:0回答:1

客户想要保留一个汉堡菜单,但是该网站非常损坏......仅在 iE 11 中。

有什么方法可以修复我在 IE 11 控制台中发现的这些错误吗?

SCRIPT1028: Expected identifier, string or number
iwpmenu.js (30,21)

SCRIPT438: Object doesn't support property or method 'iwpmenu'
wp_iwpmenu.js (2,5) 
javascript internet-explorer error-handling hamburger-menu
1个回答
0
投票

您的网站在此文件上生成错误:iwpmenu.js,行:30,列:21,映射到:

jQuery('#iwpmenu_bar').delay(delayval).removeClass('open').animate({
    [direction]: [direction_width_minus] -- Expected identifier, string or number
}, options.close_bar_delay, function() {
    jQuery(this).css('display', '').find("ul.menu").css("padding-left", "20px");
});

发生错误是因为 IE11 不支持

computed property keys
,更多信息这里

© www.soinside.com 2019 - 2024. All rights reserved.