在我看来,我有JavaScript加载局部视图。
<p>
<div id="AREA_PARTIAL_VIEW">
</div>
</p>
<script type="text/javascript">
$(document).ready(function ()
{
window.location.href = '@Url.Content("Insert", "Customers","Insert_Partial_View")';
});
</script>
@using (Html.BeginForm(@MyChoise, "Corr_Exit"))
{
@Html.AntiForgeryToken()
<div class="panel-group">
<div class="panel panel-primary">
</html> etc...........
我将此部分加载到<div>
代码
<div id="AREA_PARTIAL_VIEW">
</div>
但我的代码不起作用。为什么呢?
有人可以帮我吗?
答案 0 :(得分:2)
我已经使用了加载ajax
$('#AREA_PARTIAL_VIEW').load('@Url.Action("Insert_Partial_View","Customers")');