我正在尝试使用此功能通过jquery
交换图像,一切都很好:
$(function(){
$(".highlight").hover(
function(){this.src = this.src.replace("_off","_on");},
function(){this.src = this.src.replace("_on","_off");
});
});
除了一件事。由于某种原因,默认图像(带有_off后缀的图像)会缩回到较小的尺寸。为什么是这样?我在想jquery
函数使我正在交换的图像上的css
样式属性失效。