作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我运行代码时,屏幕上会出现一个确认对话框菜单。看到“你确定吗?”后' 在确认对话框菜单上,我按“确定”。但是,按 OK 不会触发 Controller 中的操作 (DoDelete)。
我的代码如下。
我使用 BeginForm 如下。
@using (Html.BeginForm("DoDelete", "Ekranlar", FormMethod.Post))
{
|
|
<input type="submit" class="confirmDialog" value="Delete" />
}
Html部门
<div id="dialog-confirm" style="display: none">
<p>
<span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>
Are you sure ?
</p>
</div>
脚本如下。
<script type="text/javascript">
$(document).ready(function () {
$(".confirmDialog").on("click", function (e) {
// e.preventDefault(); use this or return false
var url = $(this).attr('href');
$("#dialog-confirm").dialog({
autoOpen: false,
resizable: false,
height: 170,
width: 350,
show: { effect: 'drop', direction: "up" },
modal: true,
draggable: true,
buttons: {
"OK": function () {
$(this).dialog("close");
window.location = url;
}, "Cancel": function () {
$(this).dialog("close");
}
}
});
$("#dialog-confirm").dialog('open');
return false;
});
});
</script>
最佳答案
您可以执行 $(".confirmDialog").closest('form').submit();
buttons: {
"OK": function () {
$(".confirmDialog").closest('form').submit();
$(this).dialog("close");
window.location = url;
}, "Cancel": function () {
$(this).dialog("close");
}
}
关于javascript - 如何使用 JavaScript 确认对话框菜单触发表单提交事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26142626/
我是一名优秀的程序员,十分优秀!