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