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