asp.net mvc3 利用Ajax实现局部刷新
程序员文章站
2022-10-31 23:26:33
1.利用Ajax.ActionLink()方法
首先在_Layout.cshtml文件中加载 运行AJAX必要的Jquery
[html]
1.利用Ajax.ActionLink()方法
首先在_Layout.cshtml文件中加载 运行AJAX必要的Jquery
[html]
<script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>
HomeController中的Index视图,HomeController的Index()方法直接返回View()
[html] view plaincopy
<p id="p1">
刷新此层
</p>
<p id="p2">
@Ajax.ActionLink("点此进行局部刷新",
"Refresh",
"Home",
new AjaxOptions{
UpdateTargetId = "p1"
})
</p>
HomeController中的Refresh()方法直接返回视图
为Refresh()方法添加一个分部视图
Refresh.cshtml内容如下
[html]
<p>
<img src="../../Content/3.jpg"/>
</p>