我将以下脚本用于响应式菜单。在 IE7 中,脚本使页面冻结,并显示页面“由于脚本长时间运行而没有响应”。我发现导致冻结的位是window.bind
代码底部的部分,并且从我到目前为止的研究表明它导致了 IE7 中的无限循环。我已经阅读了有关使用 setTimeout 等的答案,但我很新手,不知道如何在脚本中实现它。任何想法如何防止此脚本崩溃/冻结 IE7?
这是一个涉及此博客文章超时的解决方案,但我不知道如何使用下面的脚本来实现它
/* Sample scripts for RWD nav patterns
(c) 2012 Maggie Wachs, Filament Group, Inc - http://filamentgroup.com/examples/rwd-nav- patterns/GPL-LICENSE.txt
Last updated: March 2012
Dependencies: jQuery
*/
jQuery(function($){
$('.nav-primary')
// test the menu to see if all items fit horizontally
.bind('testfit', function(){
var nav = $(this),
items = nav.find('a');
$('body').removeClass('nav-menu');
// when the nav wraps under the logo, or when options are stacked, display the nav as a menu
if ( (nav.offset().top > nav.prev().offset().top) || ($(items[items.length-1]).offset().top > $(items[0]).offset().top) ) {
// add a class for scoping menu styles
$('body').addClass('nav-menu');
};
})
// toggle the menu items' visiblity
.find('h3')
.bind('click focus', function(){
$(this).parent().toggleClass('expanded')
});
// ...and update the nav on window events
$(window).bind('load resize orientationchange', function(){
$('.nav-primary').trigger('testfit');
});
});