Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/templates/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 在Flash swfobject上渲染时出现Safari MegaMenu c/hoverIntent问题_Jquery_Flash Builder_Hoverintent_Safari - Fatal编程技术网

Jquery 在Flash swfobject上渲染时出现Safari MegaMenu c/hoverIntent问题

Jquery 在Flash swfobject上渲染时出现Safari MegaMenu c/hoverIntent问题,jquery,flash-builder,hoverintent,safari,Jquery,Flash Builder,Hoverintent,Safari,我最近遇到了一个奇怪的问题。我有一些超大菜单——它们被简单地编码为无序列表,并使用jQuery。这里有很多类似于SitePoint教程的代码 这是我的jquery $j('li>a[topnav], li>div[topnav]').hoverIntent({ sensitivity: 4, interval: 100, over: ShowMenus, timeout: 0, out: HideMenus }); 我们使用hoverInte

我最近遇到了一个奇怪的问题。我有一些超大菜单——它们被简单地编码为无序列表,并使用jQuery。这里有很多类似于SitePoint教程的代码

这是我的jquery

$j('li>a[topnav], li>div[topnav]').hoverIntent({
    sensitivity: 4,
    interval: 100,
    over: ShowMenus,
    timeout: 0,
    out: HideMenus
});
我们使用hoverIntent插件来控制onhover和offhover事件。在我们的登录页面上——我们有一个flash电影(嵌入了swfobject.js),megemenu应该覆盖它——这是真的。但是,不幸的是,当菜单打开时,我所有的菜单项都会在Safari中崩溃。只有在使用Safari 5时才能看到这种效果。当我删除flash动画时,菜单工作正常,不会折叠

以前有人遇到过这个问题吗?有什么建议吗

Thx