客户希望保留一个汉堡菜单,但是该站点非常困惑……仅在iE 11中。

https://lavidaapartments.com

有什么办法可以解决我在IE 11控制台中发现的这些错误?

SCRIPT1028:期望的标识符,字符串或数字
iwpmenu.js(30,21)

SCRIPT438:对象不支持属性或方法“iwpmenu”
wp_iwpmenu.js(2,5)

预先感谢您提出任何建议的解决方案。

最佳答案

您的网站在以下文件上生成错误: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(更多信息here)。

10-04 10:51