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