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