|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <title>文档重复检测</title>
- <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
- <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/web/css/admin.css">
- </head>
- <body>
- <form name="form2" method="POST" action="article_test_same.php">
- <input type="hidden" name="deltype" value="<?php echo $deltype;?>">
- <input type="hidden" name="dopost" value="delsel">
- <input type="hidden" name="pagesize" value="<?php echo $pagesize;?>">
- <input type="hidden" name="channelid" value="<?php echo $channelid;?>">
- <input type="hidden" name="maintable" value="<?php echo $maintable;?>">
- <input type="hidden" name="titles">
- <table class="table shadow-sm my-3">
- <tr>
- <td colspan="3">重复文档列表</td>
- </tr>
- <tr align="center">
- <td width="10%">选择</td>
- <td width="10%">重复数量</td>
- <td width="80%">文档标题</td>
- </tr>
- <?php
- while($row = $dsql->GetArray())
- {
- if ($row['dd']==1 ) break;
- ?>
- <tr align="center">
- <td><input type="checkbox" name="arcTitles" id="arcTitle" value="<?php echo urlencode($row['title'])?>"></td>
- <td>
- <?php
- $allarc += $row['dd'];
- echo $row['dd'];
- ?>
- </td>
- <td><?php echo $row['title'];?></td>
- </tr>
- <?php }?>
- <tr>
- <td colspan="3">
- <input type="button" name="bt1" onclick="selAll();" value="全选" class="btn btn-success btn-sm">
- <input type="button" name="bt2" onclick="noSelAll();" value="反选" class="btn btn-success btn-sm">
- <input type="button" name="bt3" onclick="delArc();" value="删除" class="btn btn-success btn-sm">
- </td>
- </tr>
- </table>
- </form>
- <script>
- //获得选中文件的文件名
- function getCheckboxItem() {
- var allSel = '';
- if (document.form2.arcTitle.value) return document.form2.arcTitle.value;
- for (i = 0; i < document.form2.arcTitle.length; i++) {
- if (document.form2.arcTitle[i].checked) {
- if (allSel == "")
- allSel = document.form2.arcTitle[i].value;
- else
- allSel = allSel + "`" + document.form2.arcTitle[i].value;
- }
- }
- return allSel;
- }
- //删除文档
- function delArc() {
- var qstr = getCheckboxItem();
- document.form2.titles.value = qstr;
- document.form2.submit();
- }
- function selAll() {
- for (i = 0; i < document.form2.arcTitle.length; i++) {
- if (!document.form2.arcTitle[i].checked) {
- document.form2.arcTitle[i].checked = true;
- }
- }
- }
- function noSelAll() {
- for (i = 0; i < document.form2.arcTitle.length; i++) {
- if (document.form2.arcTitle[i].checked) {
- document.form2.arcTitle[i].checked = false;
- }
- }
- }
- </script>
- </body>
- </html>
|