我的模态表单成功发出了Ajax请求.收到的数据显示在后台.调用模式是通过数据-*完成属性作为自举的例子显示在这里.但这种模式并没有被解雇.我试着补充一下
OnSuccess = "$('#searchForm').modal('hide');"
到我的Ajax.BeginForm.但是这并没有消除模态在背景上施放的淡化效果.
我的观点是:
Search Here
@using (Ajax.BeginForm(new AjaxOptions { HttpMethod = "GET", InsertionMode = InsertionMode.Replace, UpdateTargetId = "results", OnSuccess = "$('#searchForm').modal('hide');" })) { // input fields and submit button are here }
我错过了什么吗?