當我我mouseover
.thumb
我希望src被hello.gif
替換,當我mouseout
我希望src恢復到原來的價值。第一部分很簡單,但對於第二部分我不知道如何「記住」原始的src值。jquery切換圖像src屬性
$('.thumb').mouseover(function() {
current_src = $(this).attr("src");
$(this).attr("src", basepath+"_img/hello.gif");
});
$('.thumb').mouseout(function() {
$(this).attr("src", ???);
});
只要把數據懸停是否有任何理由,你可以」 t使用CSS psuedo類?你可以使用:hover,具體來說。 – thescientist 2012-02-25 14:16:24