83
69

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Rails】link_toをボタンにする。

Posted at

link_toをボタンで表示。
ボタンの文字以外の空白部分も押せるようにする。

<%= link_to "戻る", hoge_path, class: 'btn btn-default' %>

link_toclassbtnをつけてリンクをボタン化。
こうすることで、ボタン内のどこを押しても動作するようになる。




ちなみにアイコンとか使う時はこんな風に書いてみたり。。。

<%= link_to  hoge_path, class: 'btn btn-default' do 
 %>
  <i class="fa fa-arrow-left"></i>
  <span>戻る</span>
<% end %>
83
69
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
83
69

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?