gpt4 book ai didi

asp.net-mvc - ASP.NET MVC - 如何让用户确认删除

转载 作者:行者123 更新时间:2023-12-04 22:01:39 25 4
gpt4 key购买 nike

他,
我有这个页面,我在表格中的每个项目旁边都有复选框,并希望允许用户选择其中的一些并按下我的删除按钮。我只是想不出 jquery 来制作确认窗口并仅在推送"is"时提交 - 这是我的页面

<%Html.BeginForm(); %>
<%List<ShopLandCore.Model.SLGroup> groups = (List<ShopLandCore.Model.SLGroup>)Model; %>
<%Html.RenderPartial("AdminWorkHeader"); %>
<table width="100%" id="ListTable" cellpadding="0" cellspacing="0">
<tr>
<td colspan="5" class="heading">
<input type="submit" name="closeall" value="Close selected" />
<input type="submit" name="deleteall" value="Delete selected" />
</td>
</tr>
<tr>
<th width="20px">
</th>
<th>
Name
</th>
<th>
Description
</th>
<th width="150px">
Created
</th>
<th width="150px">
Closed
</th>
</tr>
<%foreach (ShopLandCore.Model.SLGroup g in groups)
{ %>
<tr>
<td>
<%=Html.CheckBox(g.Id.ToString()) %>
</td>
<td>
<%=g.Name %>
</td>
<td>
<%=g.Description %>
</td>
<td>
<%=g.Created %>
</td>
<td>
<%=g.Closed %>
</td>
</tr>
<%} %>
</table>
<%Html.EndForm(); %>

请注意,它仅用于应确认的删除,而不一定用于关闭按钮。

最佳答案

只需将以下内容添加到页面的头部:

<script type="text/javascript">
$(document).ready(function(){
$("input[name='deleteall']").click(function() {
return confirm('Delete all selected elements?');
});
});
</script>

关于asp.net-mvc - ASP.NET MVC - 如何让用户确认删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2537463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com