如何更改背景图像 div 在没有的情况下徘徊光标时 jQuery?

我想改变背景事件 DIV on hover. 有没有办法做到这一点 pure CSS?
已邀请:

窦买办

赞同来自:

是的,干净很简单 CSS, 虽然 IE6, 如果我记得正确,不支持
:hover

没有元素除外
a

. 但以下应该在其他浏览器中一致地工作:


div {
background: #fff url/path/to/image.png/ 0 0 no-repeat;
}

div:hover {
background: #ffa url/path/to/hoverImage.png/ 0 0 no-repeat;
}

要回复问题请先登录注册