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