在任何事情之前。。。要得到一个好的答案,你需要提供一个好的问题。代码示例会有很大帮助。
您可以使用jQuery来完成所需的工作。
假设您的复选框位于列表中。
您可以为列表UL分配ID。
可以使用jQuery遍历该列表中的每个元素,并查看复选框是否选中
$("#checked li:checkbox").each(function(){
if($(this).is(\':checked\')){
//from here you can put the results found in an array,
// or just append to a hidden div that you can target with the lightbox plugin you\'re using.
}
});
其想法是构建一个隐藏的DIV,您可以将其作为灯箱打开。“提交”按钮必须触发表单将数据提交到您在数据库中创建的表中,或将其添加到现有wordpress表中。我希望这能帮助你开始。