通过jquery和大小调整错误进行图像交换的问题

时间:2013-09-27 00:05:15

标签: javascript jquery css

我正在尝试使用此功能通过jquery交换图像,一切都很好:

$(function(){
    $(".highlight").hover(
        function(){this.src = this.src.replace("_off","_on");},
        function(){this.src = this.src.replace("_on","_off");
    });
});

除了一件事。由于某种原因,默认图像(带有_off后缀的图像)会缩回到较小的尺寸。为什么是这样?我在想jquery函数使我正在交换的图像上的css样式属性失效。

0 个答案:

没有答案