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