#
whycq
2023-08-01 320ed3f4782f9662f79ecfe14d2cf3f34dd288c5
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})