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