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