对于生成的html,不会在ie8中添加不透明度

时间:2014-05-06 20:59:05

标签: javascript jquery html5

我有一个动画代码,其中不透明度被添加到div标签中...... 但同时IE8中没有添加不透明度 在下面提供我的代码...... 你能告诉我为什么它没有被添加......

function soccerMatches(matches) {
    var $profile = $('.color'),
        matchesIds = [],
        $soccers;

    $.each(matches, function(i, match) {
        matchesIds.push('#profile' + match.title);
    });

    $soccers = $(matchesIds.join(', '));

    **$profile.not($soccers).css('opacity', 0.33);**
    $soccers.css('opacity', 1);

}

1 个答案:

答案 0 :(得分:2)

IE8不支持“不透明度”