レイアウトでscriptsセクションを呼び出すように指定して
_Layout.cshtml
@RenderSection("scripts", required: false)
各ページでscriptsセクションを用意してあげる。
Index.cshtml
@section scripts{
<script type="text/javascript">
$(function(){
$(".products table").tile(4);
});
</script>
}
Go to list of users who liked
More than 5 years have passed since last update.
レイアウトでscriptsセクションを呼び出すように指定して
@RenderSection("scripts", required: false)
各ページでscriptsセクションを用意してあげる。
@section scripts{
<script type="text/javascript">
$(function(){
$(".products table").tile(4);
});
</script>
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked