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