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