如何使用表单中的信息显示确认模式对话框,以便用户可以确认他们在表单中选择了什么,并且只有在用户这样说时才会提交?
confirm.$("#submit-button").click( function(){
if (validator.form()==true) {
tb_show("Countdown", "are_you_sure.html?height=100&width=200&modal=true", "");
//some check here maybe?
}
return false;
});
答案 0 :(得分:0)
tb_show可以显示隐藏的DIV,因此最好的方法是用您希望用户确认的内容填充该div,然后简单地显示。 DIV可以按住YES按钮,单击该按钮执行实际提交
<script>
$('#confirmDiv').html("Are you sure you want to...");
tb_show("Countdown", "#TB_inline?height=100&width=200&inlineId=confirmDiv");
...
<body>
...
<div id='confirmDiv' style='display:none'></div>