嗨,我有结果,它包含一个复选框<input type='checkbox' name="ChkS[]" value='<? echo $rs->id?>'>
我在页脚中有一个打印输出列表选项<input type="button" value="Show Printable List" class="butten" onClick="openPrint()">
它在新的弹出窗口中打开可打印列表。
function openPrint() {
window.open("<?= $_SERVER["PHP_SELF"]; ?>?<?=$qstring?>&print=true","","width=1024,height=600,menubar=yes,resizable=yes, scrollbars=yes");
}
我需要使用上面的选择复选框,它应该在弹出窗口中显示选定的打印列表?
我希望理解它应该不是问题。有什么帮助吗?