我正在使用asp.net mvc-4 Web应用程序,我使用Ajax.ActionLink
进行删除操作: -
@Ajax.ActionLink("Delete","Delete", "Server",
new { id = item.ID },
new AjaxOptions
{ Confirm = "Are You sure You want to delete ?",
HttpMethod = "Post",
OnSuccess = "deletionconfirmation",
OnFailure = "deletionerror"
})
现在我正在尝试实现以下功能,即用户在第一条确认消息上单击“确定”后,显示另一条确认消息..以确保用户想要删除记录...这样可能?
答案 0 :(得分:1)
使用AjaxOptions的OnBegin方法 OnBegin =" return functionname" 然后 在functionname方法中返回false将阻止它删除