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