#
wang..123
2022-03-28 9cb42a0bd35fb7fa41f1ddb564eaf2372181dc65
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})