whycq
2022-03-28 64a3cf1a59eff2e93f5340f11927098b3a04be50
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})