LoginSignup
0
5

More than 5 years have passed since last update.

各ページからレイアウトにjavascriptを挿入する。

Posted at

レイアウトでscriptsセクションを呼び出すように指定して

_Layout.cshtml
@RenderSection("scripts", required: false)

各ページでscriptsセクションを用意してあげる。

Index.cshtml
@section scripts{
<script type="text/javascript">
    $(function(){
        $(".products table").tile(4);
    });
</script>
}
0
5
0

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
5