我一直在研究这个在 chrome 和 firefox 中运行良好的 jquery 片段,即 10 和 ie 9,但 ie 8 将无法正常工作。我哪里错了,写的jquery似乎是正确的。我可以做些什么来增强此代码并使其在 ie 8 上运行。查看 chrome 或 firefox 右上角的搜索栏(它具有工作功能)。然后在ie 8中检查它。似乎代码正在终止或没有完成功能?访问 harley.bushcommunications.com。
/* SEARCH DROP DOWN */
$('#header .search').mouseenter( function() {
$('.search').css({'z-index': '2', 'filter': 'progid:DXImageTransform.Microsoft.gradient(startColorstr=#d8ffffff, endColorstr=#d8ffffff)', '-ms-filter': '"progid:DXImageTransform.Microsoft.gradient(startColorstr=#d8ffffff, endColorstr=#d8ffffff)"'});
$('#header .search').animate({width: '15%'});
$('#header .search > ul').show();
$('#header input.input-hide, .search-submit').css({'display': 'block'});
$('.cal').css({'z-index': '1'});
$('.cal .right-text').fadeOut();
});
$('#header .search').mouseleave(function() {
$('#header > .serach > ul > p').css({'opacity': '0.0'}, 0);
$('.cal').css({'z-index': '2'});
$('.search').css({'z-index': '1'});
$('#header .search > ul').hide(0);
$('#header .search').animate({width: "125"}, 250);
$('input.input-hide, .search-submit').hide();
$('.cal .right-text').fadeIn();
});
/* CALENDAR DROP DOWN */
$('#header .cal').hover(function() {
$(this).animate({width: '15%'}, 250, 'linear');
$(this).find('ul').animate({'height': '200'},1000, 'easeOutBounce');
$('.calendar').show();
},
function() {
$('#header .cal').animate({width: '125'}, 500);
$('#header .cal > ul').animate({height: '0'}, 250, 'linear');
$('.calendar').hide();
});