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