whycq0520
2022-03-24 228baf7c1c851ee8eba6d4da1e3f459f4d6a98e0
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})