是否有 j?
$(element).on("mouseover", function() {
$(this).addClass("hover");
}).on("mouseout", function() {
$(this).removeClass("hover");
});
我在“jQuery docs”中看到一种称为“hover()
,但似乎对mouseenter<>/code>和
和>mouseleave
的约束。 (我是否应当利用这些活动而不是<代码>Mouseovermouseout
?)