.
18516761980
2022-04-08 40d710de7ef349e9f2e034c362633c641eef6157
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})