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