在鼠标上方更改图像的src

时间:2014-01-30 13:56:26

标签: jquery html5

如何更改www.mysupermarket.com中的src属性?
在更改类别时,src属性将重置为默认值。 就像在悬停到子类别时一样,img src正在变为src值。

1 个答案:

答案 0 :(得分:1)

用户.hover方法。

$('#myImg').hover(function(){
  $(this).attr("src", "images/myImage.jpg");
});