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