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 });
});
}
理想的には、この種の検出を使用したくないのですが、この場合は使用する必要があります。