如何在不刷新mvc3页面的情况下返回视图

时间:2012-08-16 09:53:48

标签: javascript ajax asp.net-mvc

@using (Html.BeginForm("Index", "HRBankInfo", FormMethod.Get))
{
    <div align="center" class="display-label">
    @ViewBag.message
    <br /><input type="submit" value="Ok" />
    </div>

}

这是我在操作成功时出现的部分视图之一。刷新页面并加载索引页面我想更新页面而不重新加载整页。

1 个答案:

答案 0 :(得分:0)

试试这个:

<script type="text/javascript">
$('#buttonId').live('click', function (e) {
    e.preventDefault();
    $(this).closest('#divid').dialog('close');
});
</script>