我正在尝试分配一个倍数classnames
,hover()
这是我的 jquery 函数
$(".bigbox").hover(function(){
alert('divs selected')
});
现在我想为一个 div 添加相同的功能
$(".smallbox").hover(function(){
alert('divs selected');
});
我想尝试这样的事情
if($(".bigbox") || $(".smallbox"))
{ alert('divs selected'); }
如何在jquery中实现?