-1

我想请教您如何做到这一点。我正在使用带有悬停在行上的引导表。但我需要悬停更多在特定(第一列)中具有相同值的行。因此,当我将其中一个具有相同值的行悬停在第一个角时,所有具有该值的行都会改变颜色。

感谢您的意见。

4

1 回答 1

0

这不是引导问题...请参阅此 jsfiddle

$('.item').on('mouseenter', function(){
    var value = $(this).text()

    $('.item').each(function(){
        $this = $(this);
        if(value == $this.text()){
            $this.addClass('active');
        }
    });
});

$('.item').on('mouseleave', function() {
    $('.item').each(function(){
        $(this).removeClass('active');
    });
});

希望这可以帮助!

于 2013-05-09T21:47:08.397 回答