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