.
18516761980
2022-03-09 eddfc83f417efa0c3fd60f4c994abc6d3c92b100
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})