答案 0 :(得分:0)
使用jQuery。
$(function() {
$("img")
.mouseover(function() {
$(this).attr("src", "newImage.jpg");
})
.mouseout(function() {
$(this).attr("src", "originalImage.jpg");
});
});
答案 1 :(得分:0)
您可以使用上面的jquery或css的修改版本。 为图像指定一个id,并使用@Sandwell发布的jquery代码中的id
如果你正在使用css try:hover property