我正在编写验证代码,如果发生任何错误,则会出现确认或警告对话框。现在我想在警告对话框中保留一个复选框,如果选中该复选框,则应返回复选框上的值。我尝试使用jquery-modal对话框,但它没有帮助我。所以任何人都可以告诉我我该怎么做
答案 0 :(得分:0)
Jquery模式为你完成这项工作。
下面是设置关闭复选框值的代码。
$(function () {
$("#dialog-confirm").dialog({
resizable: true,
height: 150,
modal: true,
close: function () {
$(this).find(':checked').each(function () {
var name = $(this).attr('name');
$('input[name="' + name + '"]').val('checked '+name);
});
},
buttons: {
"Ok": function () {
$(this).dialog("close");
},
Cancel: function () {
$(this).dialog("close");
}
}
});
});
答案 1 :(得分:0)