我正在尝试同时将悬停事件分配给 2 个元素。有没有更好的方法来做到这一点?
//I want to assign hover to another element.
$element1=$('hi');
$element2=$('hi2');
//I need to assign element 1 and element 2 to the same hover function...
$element1.hover(function(e){
codes......
})
感谢您的帮助。