我有一個頁面叫做訂單,其中有打印按鈕。點擊打印時,我想打印另一個名爲print_this的頁面。在打印另一個頁面的頁面上打印按鈕
<div class="actions">
<%= f.submit 'Place order', class: 'btn btn-primary' %>
<%= f.submit 'Print', class: 'btn btn-primary' %>
</div>
所以說按鈕在這個網址:http://localhost:3000/o/p
等印刷品的點擊我想開http://localhost:3000/orders/1
,即直接打印彈出。
請幫忙。
將一些參數傳遞給最終頁面,如'http:// localhost:3000/orders/1?print = true',並在javascript觸發器中'window.print()'function – Deadlock
can你請詳細說明一下? – Suraj
很難理解,你是否想要得到哪個提交按鈕被用戶點擊? – Nithin