.
18516761980
2022-03-01 0efa0c7736c1554ea54de545e91a4577b64603df
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})