我的 Rails 应用程序使用 partials 将网站的不同部分加载到视图中。我想添加一个关闭图标,单击该图标会从视图中删除部分内容。示例:用户在应用程序中打开一个文件夹,然后单击一个图标以“关闭”该文件夹。这可能吗?
问问题
1487 次
1 回答
0
使用 jquery 的快速解决方案:
_partial.html.erb
<div id="unique">
<p>Html code here</p>
</div>
查看.html.erb
<%= render :partial => 'partial' %>
<script type="text/javascript">
window.onload = function () {
$('#unique').remove()
}
</script>
使用 jquery .remove() http://api.jquery.com/remove/删除 DOM 节点
于 2013-08-06T21:36:36.397 回答