mrzhssss
2022-04-07 756d5b12074143d163a77edebff9ea41ddac021b
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})