$("#clo").mouseover(function(){//当id为clo的元素 鼠标滑入将id为hint_closs元素显示
$("#hint_closs").show();
});
$("#clo").mouseout(function(){//当id为clo的元素 鼠标滑出将id为hint_closs元素隐藏
$("#hint_closs").hide();
});
时间: 2024-10-26 12:57:18
$("#clo").mouseover(function(){//当id为clo的元素 鼠标滑入将id为hint_closs元素显示
$("#hint_closs").show();
});
$("#clo").mouseout(function(){//当id为clo的元素 鼠标滑出将id为hint_closs元素隐藏
$("#hint_closs").hide();
});