如何使用JavaScript

时间:2018-03-01 16:44:08

标签: javascript asp.net-mvc razor

在我看来,我有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>

但我的代码不起作用。为什么呢?

有人可以帮我吗?

1 个答案:

答案 0 :(得分:2)

我已经使用了加载ajax

$('#AREA_PARTIAL_VIEW').load('@Url.Action("Insert_Partial_View","Customers")');