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