/***************************** * 画像hover * *****************************/ $(function(){ $('img').hover(function(){ $(this).attr('src', $(this).attr('src') .replace('_off', '_over')); }, function(){ $(this).attr('src', $(this).attr('src') .replace('_over', '_off')); }); $('input').hover(function(){ $(this).attr('src', $(this).attr('src') .replace('_off', '_over')); }, function(){ $(this).attr('src', $(this).attr('src') .replace('_over', '_off')); }); });