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