如何在按钮上添加确认弹出窗口(在MVC中执行GET POST操作)?

时间:2010-06-17 16:09:58

标签: html asp.net-mvc model-view-controller asp.net-mvc-2

我在aspx页面上有一个get / post / JSON函数。此页面将在文本框中输入的数据添加到由javascript填充的表中。当用户选择提交按钮时。如果文本框不为空,请使用弹出按钮告知用户文本框中的数据未保存在表中。如何在控制器中的后置操作上显示确认“确定/取消”弹出窗口? 我快速总结了我的代码是什么样的。

...
<%  using (Html.BeginForm("AddName", "Name", FormMethod.Post, new { id = "AddNameForm" })) { %>
...
<table id="displayNameTable" width= "100%">                        
    <tr>
        <th colspan="3">Names Already Added</th>
    </tr>
    <tr>
        <td style="font-size:smaller;" class="name"></td>
    </tr>
</table>  
...
<input name="Name" id="txtInjuryName" type="text" value="<%=test.Name %>" />
...
<input type="submit" name="add" value="Add"/>
<% } %>
<form id="form1" runat="server">
           string confirmNext = "";
    if (test.Name == "")
    {
       confirmNext = "return confirm('It seems you have a name not added.\n\nAre Continue?')";
    }%>
    <input type="submit" name="getNext" value="Next" onclick="<%=confirmNext%>" />
</form>

2 个答案:

答案 0 :(得分:4)

<script type="text/javascript">

    $(document).ready(function(){ $("#form1").bind("submit", function(){ 
         if(!confirm('It seems you have a name not added.\n\nAre Continue?')) 
               return false;   
         });}          
     });

</script>

答案 1 :(得分:4)

您可以使用表单的onsubmit事件:

<form id="form1" onsubmit="return confirm('It seems you have a name not added.\n\nAre Continue?')">
    <input type="submit" name="getNext" value="Next" />
</form>

为什么ASP.NET MVC应用程序中有runat="server"?您也可以考虑指定此表单发布到的action,并使用Html.BeginForm帮助器作为您的第一个表单。