2017-06-07 71 views
0

要定義我的ajax函數,我通常使用<%= link_to%>來添加一個remote:true方法。但我有一個標記行遠程爲真<a>

<a href="/posts/<%= post.id %>/undone" data-method="patch"><i class="fa fa-close" aria-hidden="true" style="margin-right: 10px;"></i>Cancel</a> 

我想用ajax運行。

而且我無法將其更改爲link_to,因爲它正在崩潰我的所有設計。 那麼你知道一個方法來實現嗎?

+0

'Cancel使用'試試這個 –

+1

爲什麼你不能用'link_to'?它需要一個塊,可以輕鬆地風格的一切https://stackoverflow.com/questions/24461903/rails-link-to-tag-tag-with-styled-glyphicon/24461925#24461925 – Iceman

+0

謝謝你的答案傢伙! @Iceman,因爲當你使用bootstrap下拉菜單時,你必須使用標籤代替鏈接。如果不是風格不起作用 –

回答