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