我可以在JavaScript中编写自定义确认框,而不是默认的OK
和CANCEL
按钮,会显示SAVE
和DELETE
按钮吗?
答案 0 :(得分:14)
使用jQuery UI Dialog Box进行此操作。
您可以这样做:
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>
答案 1 :(得分:5)
不使用本机JavaScript确认框。您可以使用模拟模式对话框的众多JavaScript UI组件之一来代替这样做。
以下是一个示例:http://jqueryui.com/demos/dialog/modal-confirmation.html
我从未使用过这个,所以使用风险自负。
答案 2 :(得分: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库来运行它。