在我的rails应用程序中,我有一些内容和图像按钮(每个内容都有一个图像)。当用户单击该按钮时,我想显示相应的图像。
在我的项目中,我将所有图像保存在assets / images / preview / id1.png(例如)下。在我的javascript代码中,单击视图内容按钮时,我想更改背景图像以显示相应的图像。我想根据分配给该按钮的id查找图像。我怎样才能做到这一点?
如何为背景图像设置该图像网址:
_page2.html.erb
<div class="content">
<table>
<tr>
<td> content about the image </td>
<td> <div id="<%= content[:lable].delete(' ')%>" class="view"> VIEW-IMAGE</div></td>
</tr>
<tr>
<td>content about the image</td>
<td><div id= "<%= content[:lable].delete('')%>" class="view">VIEW-IMAGE</div></td>
</tr>
</table>
内容/ preview.js
$('.view').click(function (event){
var image = $(this).id
$(this).css("background", "url(image.jpg) no-repeat");
});
});
Jsfiddle中的链接:http://jsfiddle.net/bkrx2rxz/1/
在content / preview.js
中$('.view').click(function (event){
$(this).css("background", "url(sample.png) no-repeat");
});
我尝试使用上面列出的代码。它似乎未加载图像,因为它搜索content / sample.png中的图像而不是assets / images / sample.png。
答案 0 :(得分:0)
试试这个
$('.view').click(function (event){
$(this).css("background", "url(assets/images/sample.png) no-repeat");
});
修改强>
如果您希望根据元素的id
设置背景,只需修改代码如下:
$('.view').click(function (event){
var id = $(this).attr('id');
$(this).css("background", "url(assets/images/" + id + ".png) no-repeat");
});