我可以在 JavaScript 中编写一个自定义确认框,而不是默认的OK
和CANCEL
按钮,而是显示一个SAVE
和DELETE
按钮吗?
问问题
77882 次
3 回答
15
为此,请使用jQuery UI 对话框。
你可以这样做:
JS:
$(function() {
$("#dialog-confirm").dialog({
resizable: false,
height: "auto",
width: 400,
modal: true,
buttons: {
"Do it": function() {
$(this).dialog("close");
},
Cancel: function() {
$(this).dialog("close");
}
}
});
});
<link href="https://jqueryui.com/jquery-wp-content/themes/jquery/css/base.css" rel="stylesheet"/>
<link href="http://jqueryui.com/jquery-wp-content/themes/jqueryui.com/style.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<div id="dialog-confirm" title="Is it treason, then?">
<p><span class="ui-icon ui-icon-alert" style="float:left; margin:12px 12px 20px 0;"></span>Am I the Senate?</p>
</div>
于 2010-10-20T09:12:46.793 回答
6
不使用本机 JavaScript 确认框。您可以使用众多模拟模式对话框的 JavaScript UI 组件之一来代替。
这是一个示例:https ://jqueryui.com/dialog/#modal-confirmation
我从来没有使用过这个,所以使用风险自负。
于 2010-10-20T09:12:44.423 回答
3
$('confirm text').dialog(
{
modal:true, //Not necessary but dims the page background
buttons:{
'Save':function() {
//Whatever code you want to run when the user clicks save goes here
},
'Delete':function() {
//Code for delete goes here
}
}
}
);
这应该可以,但是您需要下载或链接到 jQuery 和 jQuery UI 库才能运行它。
于 2010-10-20T09:47:38.457 回答