如何从rails中的html标签调用javascript函数?

时间:2015-04-21 17:20:00

标签: javascript jquery html ruby-on-rails

我有一个js文件,它有一个函数和一个html文件,我从中调用js函数。我做了一些事情,它能够找到js文件的路径,但它无法在js文件中找到函数。任何帮助pelase它非常重要? index.html.erb

<html>
 <html>
   <head>
   <%= javascript_include_tag "graph.js" %>
   </head>
   <body>
   <input type="button" onclick="popup()" value="Click Me!">
     <p>Hello!</p>
   </body>
 </html>

graph.js

 function popup()
        {
        alert("some text");
        }

1 个答案:

答案 0 :(得分:0)

错误发生在您的javascript_include_tag ..

它应该是:

<%= javascript_include_tag "graph" %>

另外..确保graph.js位于app / assets / javascripts