如何在ERB文件中的link_to标记旁边放置一个复选框,当我们选中一个框时,我们应该获取ERB的link_to标记的值?

时间:2018-11-30 12:59:22

标签: jquery erb

如果我选中复选框并单击ClickMe按钮,则前端看起来应如下所示:

enter image description here

<td class='actions actions-1 my-files' data-hook="admin_orders_index_row_actions">
          <% doc = Spree::BookkeepingDocument.where(printable: shipment.order).last %>
          <% if doc %>
            <%= link_to_with_icon "file", "", admin_bookkeeping_document_path(doc, format: :pdf), title: "Download Invoice" %>
          <input type="checkbox" name="files" class="check"/>`

1 个答案:

答案 0 :(得分:0)

<span>
    <input type="checkbox" value="<%= admin_bookkeeping_document_path(doc, format: :pdf)%>" name="my-files" style="margin-left: 30%;">
</span> 

添加此代码段,并在link_to标签之后,并在复选框中,属性值给出link_to标签值的值。