我是 jquery 的新手。我在视图页面中有以下链接按钮
<div id = 'image'>
<%= link_to_function image_tag("play_images.jpeg",:width => 30, :height => 30,:align => 'left', :title => 'Play'),:id => 'play'%>
</div>
这将是什么jquery ..
jQuery("#play").click(function() {
//What to write here to replace image of button
});