外的工作,我有過的錶行循環和比較已經進入到什麼用戶正在試圖添加的信息。每。我在循環中有條件查找行中每個s的重複條目。取決於匹配的次數,用戶做出是/否的決定。如果用戶選擇是,則需要刪除當前行。我使用jQuery UI和我有讓對話框知道要刪除哪些行或具有循環。每次知道什麼是在對話框中選擇的問題。 的。每個循環如下所示:與變量jQuery UI的對話框
$('#tblSelectedList > tbody > tr').each(function() {
下面是對話的代碼(在for循環):
$('<div></div>').appendTo('body')
.html('<div><h6>Delete duplicate?</h6></div>')
.dialog({
modal: true,
title: 'Delete message',
zIndex: 10000,
autoOpen: true,
width: 'auto',
resizable: false,
buttons: {
Yes: function() {
removeThis = 1;
blnAdd = 1;
$(this).dialog("close");
},
No: function() {
blnAdd = 0;
$(this).dialog("close");
}
},
close: function (event, ui) {
$(this).remove();
}
});
,我使用刪除行的方法:
var id = $(this).attr('id').substring(7,$(this).attr('id').length);
$('#tblSelectedList #row-'+id).remove();
一切都獨立工作,但我不能讓對話框,它包含的。每次循環知道對方在做什麼。