(function () {
var $make = $('li.prod');
$('div.models').addClass('hide');
$make.on('mouseenter', function () {
var $this = $(this);
$this.next().fadeIn(150);
});
$make.on('mouseleave', function () {
var $that = $(this);
$that.next().fadeOut(150);
});
})();
这是我的小提琴。我想知道为什么我的代码在 IE7 中不能正常工作。另外,如何在将鼠标悬停在子菜单上时打开子菜单。任何帮助或建议将不胜感激。当谈到 jquery 时,我仍然是一个菜鸟。