#
luxiaotao1123
2022-02-14 1c4928947c1c233af5ce91b77d910625e365c9fc
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})