嗨,嗯,试图在花哨的盒子上打开图像,目前图像在另一个选项卡中打开。我的代码是这个
<%= link_to file.title, file_path(file) %>
当我把它放在另一个标签中时
因此创建了锚标记并执行了以下操作
<a href = "file.title, file_path(file)" class="file_preview"> <%= file.title %></a>
并写了一个js脚本
$(document).ready(function() {
$('.file_preview').fancybox({
'width' : false,
'height' : false,
'autoDimensions' : true,
'autoScale' : true,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe',
'scroll' : 'no',
'centerOnScroll' : true
});
});
这没有用,但是当我给出一个像 /testadd 这样的地址时,它在 iframe 中打开,我不知道如何进一步进行