在haml

时间:2019-01-11 23:00:31

标签: jquery ruby-on-rails haml

我正在尝试在.haml中放入一些内联javascript,但我遇到了未捕获的参考错误:$ is not defined at $('#expl').hover(function() {

可能有一个明显的解决方案,但我看不到。这是代码:

    %label.form-group__data{ for: bla bla bla }
      = t('.search_in_db')
      .box{:id=>"expl"}

  :javascript
     $('#expl').hover(function() {
      $(t('.search_in_db_expl')).show();
      },
      function() {
      $(t('.search_in_db_expl')).hide();
      });

我正在尝试将其添加为悬停文字

0 个答案:

没有答案