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