我在窗體上使用MVC4 Ajax幫助函數,我想從腳本提交表單。如何在以編程方式提交MVC Ajax表單時定位div?
問題是當我調用提交函數,它不會加載到正確的div。有什麼想法嗎?
@using (Ajax.BeginForm("NewGame", "Home", new AjaxOptions { HttpMethod = "Post", UpdateTargetId = "targetDiv" }, new { id = "newGameForm" }))
{
<input type="hidden" name="client_seed" id="client_seed" />
<input type="submit" value="New Game" id="NewGameButton" />
<a class=button onclick="$('#newGameForm').submit();">New Game</a>
}
單擊標準提交按鈕,將調用結果載入targetDiv。點擊錨點代替當前的div。