我有事要问
@Ajax.ActionLink("menu", "itemList", new AjaxOptions { HttpMethod = "GET", InsertionMode = InsertionMode.Replace, UpdateTargetId = "divItemList" })
所以我需要的是,每当我点击该动作链接时,它将触发点击此另一个动作链接
@Ajax.ActionLink("item", "content", new AjaxOptions { HttpMethod = "GET", InsertionMode = InsertionMode.Replace, UpdateTargetId = "divContent" })
任何人都可以告诉我一个jquery这样做?感谢
答案 0 :(得分:0)
我能想到的最简单的方法,我的头脑。
$.ajax({
url: '@Url.Action("ActionName", "ControllerName")',
type: "GET",
success: function(data)
{
$("#divContent").html(data);
},
});