连接悬停在出 jQuery
concatenate hover in out jQuery
我记得有一次我看到 jQuery in/out 悬停连接是这样的:
$('.xxx').hover(function(){
$(this).css({'background':'white'});
}).(function(){
$(this).css({'background':'red'});
});
但是不起作用..我在做什么?
请尝试以下操作:
$('.xxx').hover(function(){
$(this).css({'background':'white'});
}, function(){
$(this).css({'background':'red'});
});
您想为悬停 jQuery 函数提供两个处理程序。第一个函数在鼠标指针进入元素时触发。第二个函数在鼠标指针离开元素时触发(https://api.jquery.com/hover/)。
我记得有一次我看到 jQuery in/out 悬停连接是这样的:
$('.xxx').hover(function(){
$(this).css({'background':'white'});
}).(function(){
$(this).css({'background':'red'});
});
但是不起作用..我在做什么?
请尝试以下操作:
$('.xxx').hover(function(){
$(this).css({'background':'white'});
}, function(){
$(this).css({'background':'red'});
});
您想为悬停 jQuery 函数提供两个处理程序。第一个函数在鼠标指针进入元素时触发。第二个函数在鼠标指针离开元素时触发(https://api.jquery.com/hover/)。