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