我在同一页上有几张表格,我想用同一代码向所有人补充确认的辩词。 他们都有一类确认书,确认方言的称呼应动态生成(即点工作)。
在html中,我有在页面负荷时隐藏的方言,然后在<条码>(开放式)<条码/代码>功能上显示。
这是我现在的事情,它只是一纸空谈,但一旦你证实,就重复了其他条款,没有提交表格:
var deleteConfirmed = false;
$( form.confirm-form ).submit(function(e) {
if ( ! deleteConfirmed)
{
e.preventDefault();
var title = $(this).find( input.action ).val();
var $this = $(this);
console.log( title: + title);
$( #confirm-dialog ).attr( title , title);
$( #confirm-dialog ).dialog({
buttons : {
"Confirm" : function() {
deleteConfirmed = true;
$(this).dialog( close );
$this.submit();
},
"Cancel" : function() {
$(this).dialog( close );
}
}
});
$( #confirm-dialog ).dialog( open );
}
else
{
$(this).submit();
deleteConfirmed = false;
}
});