How to highlight the table row on mouse hover

后端 未结 3 602
说谎
说谎 2021-01-06 14:50

I have this table:

3条回答
  •  感动是毒
    2021-01-06 15:19

    you can apply class on mouse over like this.

    http://jsfiddle.net/uuws8hbv/

in the controller add function.

$scope.rowselected = function(row)
{
   $scope.rowNumber = row;
}

提交回复
热议问题