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