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