与 JavaScript 函数中的 ActionLink 的行为相同
我想使用返回 PartialView 的操作方法的结果来更新 div 的内容。
下面的代码就可以做到这一点。
<%= Ajax.ActionLink("Update", "Comments", new { id = 1 }, new AjaxOptions { UpdateTargetId = "divComments" })%>
<div id="divComments" />
public ActionResult Comments(string id)
{
...
return View(photo.Comments);
}
是否可以从 JavaScript 方法内部而不是页面上的链接进行此更新?
I would like to update the content of a div using the result from an action method which returns a PartialView.
The below code would do just this.
<%= Ajax.ActionLink("Update", "Comments", new { id = 1 }, new AjaxOptions { UpdateTargetId = "divComments" })%>
<div id="divComments" />
public ActionResult Comments(string id)
{
...
return View(photo.Comments);
}
Is it possible to have this update occur from inside a javascript method rather than from a link on the page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您熟悉 jQuery,只需使用 $.ajax() 或 $.load() 方法。
if you are familiar with jQuery, just use $.ajax() or $.load() methods.