wang..123
2022-03-17 a379484c4a8ac854c9420d66d322aa0358e57343
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})