tr:hover not working

后端 未结 13 1677
长发绾君心
长发绾君心 2020-12-08 09:27

I\'m trying to highlight (change background color) of the entire row when the mouse is hovering on a table row. I searched through the Net and it should be working, but it d

13条回答
  •  星月不相逢
    2020-12-08 10:00

    tr:hover doesn't work in old browsers.

    You can use jQuery for this:

    .tr-hover
    {  
      background-color:#fefefe;
    }
    
    $('.list1 tr').hover(function()
    {
        $(this).addClass('tr-hover');
    },function()
    {
        $(this).removeClass('tr-hover');
    });
    

提交回复
热议问题