编程语言
首页 > 编程语言> > 如何在Haml中包含内联JavaScript?

如何在Haml中包含内联JavaScript?

作者:互联网

我怎么能写这样的东西包含在模板中,但是在Haml中呢?

<script>
$(document).ready( function() {
  $('body').addClass( 'test' );
} );
</script>

解决方法:

:javascript
    $(document).ready( function() {
      $('body').addClass( 'test' );
    } );

文件:http://haml.info/docs/yardoc/file.REFERENCE.html#javascript-filter

标签:javascript,jquery,haml
来源: https://codeday.me/bug/20190926/1820976.html