我的控制器中有这段代码:
SomeController.cs
public PartialViewResult DoSomething()
{
...
List<MyItem> myList= populateList();
return PartialView(myList);
}
查看.cshtml
@using (Ajax.BeginForm("DoSomething", "Some", new AjaxOptions
{
HttpMethod = "POST",
InsertionMode = InsertionMode.Replace,
UpdateTargetId = "resultFromDoSomething",
LoadingElementId = "waitingRequest"
}))
<div id="resultFromDoSomething"></div>
该代码在 Internet Explorer 9 中运行良好,但在 Firefox 中,它不会填充名为resultFromDoSomething的 div,而是重定向到具有该视图的另一个页面。
我在这里做错了吗?
谢谢!