我想测试 IE 是 7 版还是 8 版,是否阻止特定代码运行?
我尝试了以下代码,但这似乎不起作用:
if($.browser.msie && parseInt($.browser.version, 10) <= 8) {
$(document).on('mouseenter', '.thumb', function () {
$(this).find('.bgg').stop().animate({ opacity : 1 });
});
$(document).on('mouseleave', '.thumb', function () {
$(this).find('.bg').stop().animate({ opacity : .5 });
});
}
理想情况下,我真的不想使用这种检测,但在这种情况下必须使用它。