jQuery hoverIntent插件是否可以在Internet Explorer中运行?

时间:2010-02-08 21:12:37

标签: javascript jquery hoverintent

hoverIntent插件是否与Internet Explorer兼容?我在将其插入以下JavaScript时遇到问题:

if (jQuery.browser.msie === true) {
  jQuery('#top_mailing')
    .bind("mouseenter",function(){
      $("#top_mailing_hidden").stop().slideDown('slow');
    })
    .bind("mouseleave",function(){
      $("#top_mailing_hidden").stop().slideUp('slow');
    });
}

我正在将以下内容用于其他浏览器,但它在IE7中无法正常运行

$('#top_mailing').hoverIntent(
  function () {
    $("#top_mailing_hidden").stop().slideDown('slow');
  }, 
  function () {
    $("#top_mailing_hidden").stop().slideUp('slow');
  }
);

1 个答案:

答案 0 :(得分:0)

我会说是的,因为我在这个页面上使用它 - http://trailroc.com/?p=team 我检查了7和8,不确定它是否在IE6中有效,因为我不在乎。

我正在使用jQuery 1.3.1: