0
0

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 1 year has passed since last update.

Ruby on RailsでJavaScriptのファイルを読み込む方法

Last updated at Posted at 2023-04-21

・用意するファイル

・JavaScriptのファイル
・html.erbファイル

・やること

まずJavaScriptのファイルを`アプリ名/app/javascript`に置く。

そしてhtml.erbファイルのタグ内に
<%= javascript_include_tag '読み込みたいJSのファイル名' %>を入れる。

html.erb
<!DOCTYPE html>
<html>
#ここがJavaScriptを読み込むコード
<%= javascript_include_tag '読み込みたいJSのファイル名' %>
~~~~
</html>

これで読み込むことができる。

javascriptフォルダの中で任意のフォルダに入れたい場合は
<%= javascript_include_tag '任意のフォルダ名/読み込みたいJSのファイル名' %>
と書くことによってフォルダわけができる。

html.erb
<!DOCTYPE html>
<html>
#ここがJavaScriptを読み込むコード
<%= javascript_include_tag '任意のフォルダ名/読み込みたいJSのファイル名' %>
~~~~
</html>
0
0
2

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?