我正在尝试根据翻转的内容更改单独 div 的背景
javascript:
$( "#topBar" ).hover(function() {
$(this).animate({backgroundColor: '#c7ce95' }, 600);
}
);
$( "#topBar" ).mouseout(function() {
$(this).css('background', 'rgba(0, 0, 0, 0.7)');
});
html
<div style="position:absolute; top:0; left:0; width:213px; height:20px; display:block; float:left; color:#fff; padding:10px; background: rgba(0, 0, 0, 0.7); " id="topBar" >test </div>
<div style="position:absolute; top:0; left:0; width:213px; height:20px; display:block; float:left; color:#fff; padding:10px; background: rgba(0, 0, 0, 0.7); " id="topBar" >test </div>
我有两个问题:
- 推出不起作用。
- 我只能让它在 1 上工作,因为它使用相同的 ID。而且我认为最好的办法不是复制 jquery 更改 ID,因为在页。