我有一个部分视图,需要在页面底部添加一些 javascript。
主页面:
...some html...
<div>
@Html.Partial("_myPartial")
</div>
....more html....
//required JS at BOTTOM - THIS should also come from above partial
@RenderSection("scripts", required: false)
我的部分观点:
<div id="Slider">
<img src="http://placehold.it/1000x400&text=[img 1]" />
<img src="http://placehold.it/1000x400&text=[img 2]" />
<img src="http://placehold.it/1000x400&text=[img 3]" />
<img src="http://placehold.it/1000x400&text=[img 4]" />
</div>
@section scripts
{
<script type="text/javascript">
$(window).load(function () {
$('#Slider').orbit();
});
</script>
}
但这不起作用 - 不包括脚本部分。
我google了一下,不支持这个……嗯……
...您将如何处理这种情况?
建议是用脚本制作另一个部分并包括这个......不漂亮!
那里有更好的方法吗?
谢谢!