0

我是 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

});

4

2 回答 2

1
jQuery("#play").click(function() {
       //What to write here to replace image of button
   jQuery(this).css('background-image','your_image_url');
});
于 2012-12-12T07:58:46.500 回答
0
link_to_function image_tag

将生成一个图像标签。您只需要更改图像的 src 属性。

$("#play").click(function() {
   this.src = 'path_to_your_image.jpg';
});

希望这可以帮助。

于 2012-12-12T08:20:55.893 回答