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