0

对于我正在处理的项目,有几个按钮可以打开不同的模式弹出窗口。每个窗口都有自己的复选框。

用户选中一些复选框然后关闭模态框后,复选框信息存储在一个数组中并显示在页面上。

我的问题是,当用户重新打开相同的模式弹出窗口时,我需要填写相同的复选框。我在这里找到了一个 stackoverflow 问题。

但是我的问题是,我似乎必须创建一个唯一的变量/数组,然后将该数组放入主数组中,但我不知道该怎么做。

// id of the button so I can use the name to open unique popups
// and create unique variable names
var roleId = '';

// The main Array to store all my button/checkbox lists Arrays into
var storedArray = [];    

// The Array that stores the currently selected checkbox items.
var selectedArray = [];


// The function that is on all the buttons that bring up the checkbox modals
$('.role').click(function(){

    // Saves a unique ID to be used to open up the appropriate popup
    roleId = $(this).attr('tag');

    // Here I try to create a Variable for a unique Array
    storedArray.push('stored'+roleName);

    // Selects the appropriate Modal popup
    $('#modal-'+roleId).modal();
    return false;
});

// Later the function that saves the checkbox items that are selected:
    $('input:checked').each(function() {
        selectedArray.push($(this).val());
    });

// Where I try to store the checkbox data into the
// storedArray which is inside the slected Array
    storedArray.push(selectedArray);
    console.log('2 storedArray = '+storedArray);
4

1 回答 1

1

查看 SimpleModal 的文档,有一个persist选项。这是做你想做的吗?

$('#modal-'+roleId).modal({persist:true});
于 2013-04-04T19:20:44.430 回答