<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>"> <title>选择文章</title> <link rel="stylesheet" href="../static/web/css/bootstrap.min.css"> <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css"> <link rel="stylesheet" href="../static/web/css/admin.css"> <script language="javascript"> //获得选中文件的文件名 function getCheckboxItem() { var allSel = ""; if (document.form2.arcID.value) return document.form2.arcID.value; for (i = 0; i < document.form2.arcID.length; i++) { if (document.form2.arcID[i].checked) { if (allSel == "") allSel = document.form2.arcID[i].value; else allSel = allSel + "," + document.form2.arcID[i].value; } } return allSel; } function selAll() { for (i = 0; i < document.form2.arcID.length; i++) { if (!document.form2.arcID[i].checked) { document.form2.arcID[i].checked = true; } } } function noSelAll() { for (i = 0; i < document.form2.arcID.length; i++) { if (document.form2.arcID[i].checked) { document.form2.arcID[i].checked = false; } } } function ReturnValue() { if (window.opener.document.<?php echo $f ?>.value == "") { window.opener.document.<?php echo $f ?>.value = getCheckboxItem(); } else { window.opener.document.<?php echo $f ?>.value += "," + getCheckboxItem(); } window.opener = null; window.close(); } </script> </head> <body> <table width="100%" align="center" cellpadding="2" cellspacing="1" class="table maintable mt-3 mb-3"> <tr bgcolor="#E7E7E7"> <td height="26" colspan="9" background="../static/web/img/tbg.gif">文章列表</td> </tr> <form name="form2"> <tr align="center" bgcolor="#F9FCEF" height="26"> <td width="6%">ID</td> <td width="4%">选择</td> <td width="30%">文章标题</td> <td width="10%">更新时间</td> <td width="11%">类目</td> <td width="8%">点击</td> <td width="7%">HTML</td> <td width="10%">权限</td> <td width="13%">属性</td> </tr> {dede:datalist empty='<tr><td colspan="9"><center>暂无内容</center></td></tr>'} <tr align='center' onMouseOut="javascript:this.bgColor='#ffffff';" height="26"> <td>{dede:field.id/}</td> <td><input name="arcID" type="checkbox" id="arcID" value="{dede:field.id/}" class="np"></td> <td align='left'><a href='archives_do.php?aid={dede:field.id/}&dopost=editArchives'>{dede:field.title/}</a></td> <td>{dede:field.senddate function="GetDateMk(@me)" /}</td> <td>{dede:field.typeid function='GetTypename(@me)'/}</td> <td>{dede:field.click/}</td> <td>{dede:field.ismake function="IsHtmlArchives(@me)" /}</td> <td>{dede:field.arcrank function="GetRankName(@me)" /}</td> <td>{dede:field.flag function="IsCommendArchives(@me)" /}</td> </tr> {/dede:datalist} <tr bgcolor="#F9FCEF"> <td height="26" colspan="9"> <a href="javascript:selAll()" class="btn btn-success btn-sm">全选</a> <a href="javascript:noSelAll()" class="btn btn-success btn-sm">取消</a> <a href="javascript:ReturnValue()" class="btn btn-success btn-sm">把选定值加到列表</a> </td> </tr> </form> <tr align="right" bgcolor="#EEF4EA"> <td height="36" colspan="9" align="center">{dede:pagelist listsize='6'/}</td> </tr> </table> <table width='100%' align="center" border='0' cellpadding='1' cellspacing='1' bgcolor='#CBD8AC' class="table maintable table-borderless"> <tr bgcolor='#EEF4EA'> <form name='form3' action='content_select_list.php' method='get'> <input type='hidden' name='f' value='<?php echo $f?>'> <td> <table width='600' border='0' cellpadding='0' cellspacing='0'> <tr> <td width='260' align='center'>请选择类目:</td> <td width='260'> <select name='cid' style='width:160px'> <option value='0'>选择分类</option> <?php echo $optionarr?> </select> </td> <td width='100'>关键词:</td> <td width='260'><input type='text' name='keyword' value='<?php echo $keyword?>' style='width:160px'></td> <td width='100'><button type="submit" class="btn btn-success btn-sm">搜索</button></td> </tr> </table> </td> </form> </tr> </table> </body> </html>