Dwzdialog中批量提交的问题处理

在dwz的dialog中进行批量操作的代码为:

<li><a title="确定吗?" target="selectedTodo" rel="staffId" postType="string" href="<?php echo site_url('salary/appendStaffsToTemplate') ?>" class="add"><span>批量加入职工</span></a></li>
    

但是提交后出现问题,需要加入targetType属性:

<li><a title="确定吗?" target="selectedTodo" targetType="dialog" rel="staffId" postType="string" href="<?php echo site_url('salary/appendStaffsToTemplate') ?>" class="add"><span>批量加入职工</span></a></li>
    
原文地址:https://www.cnblogs.com/kelite/p/2920285.html