好的,所以我有一个 div 网格,如下所示:
<div class="check1"></div>
<div class="check1"></div><div style="clear:both;"></div>
<div class="check1"></div>
<div class="check1"></div>
在我的 jquery 中,我检查是否已使用以下方式单击了其中一个 div:
$('.check1').mousedown(function(){
$(this).css('background-color','blue');
});
我想要做的是,如果一个 div 被 cliced 并按住但光标移动到另一个 div 我也希望该 div 改变颜色。我尝试了这个示例,但是无论是否调用了鼠标按下事件,都会调用 mouseover 事件。
$('.check1').mousedown(function(){
$(this).css('background-color','blue');
$('.check1').mouseover(function(){
$(this).css('background-color', 'blue');
});
});
这可能吗?如果可以,我做错了什么/我需要改变什么?