Menu

STEP 1 - attrメソッドで画像のsrc属性を変更する

Download

img要素で配置した画像の src属性を変更すれば、画像の置き換えができます。

jQuery Code

$(function() {
	$(".rollover").hover(function(){
		$(this).attr("src", "images/button_pink_hover.png");
	},
	function(){
		$(this).attr("src", "images/button_pink.png");
	});
});

jQuery.com 公式ドキュメント

Chapter 12