婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 網(wǎng)站建設 > 建站知識 > 織夢dedecms后臺文章百度收錄排名開發(fā)教程

織夢dedecms后臺文章百度收錄排名開發(fā)教程

POST TIME:2020-03-31 11:55

1. 先把 :inc_baidu.php 放入后臺根目錄的的 inc 文件夾內,

2. 再把ext_baidu.php放入后臺根目錄

3. 然后修改后臺根目錄下的templets模版 文件夾 的content_list.htm :

代碼如下:

<a href="javascript:getBaiduRanking(0)" class="coolbg"> 百度排名 </a>
<a href="javascript:getBaiduShoulu(0)" class="coolbg"> 百度收錄 </a>
<a href="javascript:getBaiduZhonghe(0)" class="coolbg"> 百度綜合 </a>
4. 最后修改后臺根目錄下的js文件夾 的list.js :

代碼如下:
//百度排名
function getBaiduRanking(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
if(qstr=='')
{
alert('必須選擇一個或多個文檔!');
return;
}
location="ext_baidu.php?aid="+aid+"&dopost=BaiduRanking&qstr="+qstr;
}
//百度收錄
function getBaiduShoulu(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
if(qstr=='')
{
alert('必須選擇一個或多個文檔!');
return;
}
location="ext_baidu.php?aid="+aid+"&dopost=BaiduShoulu&qstr="+qstr;
}
//百度收錄排名 綜合查詢
function getBaiduZhonghe(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
if(qstr=='')
{
alert('必須選擇一個或多個文檔!');
return;
}
location="ext_baidu.php?aid="+aid+"&dopost=BaiduZhonghe&qstr="+qstr;
}

inc_baidu.php完整代碼

<?php

require_once(dirname(__FILE__).'/../config.php');
require_once(DEDEADMIN.'/inc/inc_batchup.php');
require_once(DEDEADMIN.'/inc/inc_archives_functions.php');
require_once(DEDEINC.'/typelink.class.php');
require_once(DEDEINC.'/arc.archives.class.php');

//得到標題
function getTitle($aid)
{
//利用傳遞ID,得到網(wǎng)址
$aid = $aid;
$aid = preg_replace("#[^0-9]#", '', $aid);
$Archives=new Archives();
//獲取表信息
$arcQuery = "SELECT title FROM `xjq_archives` WHERE id='$aid' ";
$arcRow =$Archives->dsql->GetOne($arcQuery);
$title=$arcRow[title];
return $title;
}

//得到網(wǎng)址
function getUrl($aid){
//利用傳遞ID,得到網(wǎng)址
$aid = $aid;
$aid = preg_replace("#[^0-9]#", '', $aid);
$Archives=new Archives();
//獲取主表信息
$query = "SELECT arc.*,ch.maintable,ch.addtable,ch.issystem,ch.editcon,
tp.typedir,tp.typename,tp.corank,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.sitepath,tp.siteurl
FROM `xjq_arctiny` arc
LEFT JOIN `xjq_arctype` tp ON tp.id=arc.typeid
LEFT JOIN `xjq_channeltype` ch ON ch.id=tp.channeltype
WHERE arc.id='$aid' ";
$trow = $Archives->dsql->GetOne($query);
$trow['maintable'] = ( trim($trow['maintable'])=='' ? 'xjq_archives' : trim($trow['maintable']) );
if($trow['issystem'] != -1)
{
$arcQuery = "SELECT arc.*,tp.typedir,tp.typename,tp.corank,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.sitepath,tp.siteurl
FROM `{$trow['maintable']}` arc LEFT JOIN `xjq_arctype` tp on arc.typeid=tp.id
LEFT JOIN `xjq_channeltype` ch on ch.id=arc.channel WHERE arc.id='$aid' ";
$arcRow =$Archives->dsql->GetOne($arcQuery);
if($arcRow['ismake']==-1 || $arcRow['corank']!=0 || $arcRow['arcrank']!=0 || ($arcRow['typeid']==0 && $arcRow['channel']!=-1) || $arcRow['money']>0)
{
$weburl='{$cfg_phpurl}/view.php?aid='.$aid;
return $weburl;
}
}
else
{
$arcRow['id'] = $aid;
$arcRow['typeid'] = $trow['typeid'];
$arcRow['senddate'] = $trow['senddate'];
$arcRow['title'] = '';
$arcRow['ismake'] = 1;
$arcRow['arcrank'] = $trow['corank'];
$arcRow['namerule'] = $trow['namerule'];
$arcRow['typedir'] = $trow['typedir'];
$arcRow['money'] = 0;
$arcRow['filename'] = '';
$arcRow['moresite'] = $trow['moresite'];
$arcRow['siteurl'] = $trow['siteurl'];
$arcRow['sitepath'] = $trow['sitepath'];
}
$arcurl = GetFileUrl($arcRow['id'],$arcRow['typeid'],$arcRow['senddate'],$arcRow['title'],$arcRow['ismake'],$arcRow['arcrank'],
$arcRow['namerule'],$arcRow['typedir'],$arcRow['money'],$arcRow['filename'],$arcRow['moresite'],$arcRow['siteurl'],$arcRow['sitepath']);
$arcfile = GetFileUrl($arcRow['id'],$arcRow['typeid'],$arcRow['senddate'],$arcRow['title'],
$arcRow['ismake'],$arcRow['arcrank'],$arcRow['namerule'],$arcRow['typedir'],$arcRow['money'],$arcRow['filename']);
if(preg_match("#^http:#", $arcfile))
{
$arcfile = preg_replace("#^http://([^/]*)/#i", '/', $arcfile);
}
$truefile = GetTruePath().$arcfile;
if(!file_exists($truefile))
{
MakeArt($aid,TRUE);
}
$weburl=$arcurl;
return $weburl;
}
/*//檢查排名
function getBaiduRanking($aid)
{
//利用傳遞ID,得到網(wǎng)址
$aid = $aid;
$aid = preg_replace("#[^0-9]#", '', $aid);
$Archives=new Archives();
//獲取主表信息
$query = "SELECT arc.*,ch.maintable,ch.addtable,ch.issystem,ch.editcon,
tp.typedir,tp.typename,tp.corank,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.sitepath,tp.siteurl
FROM `xjq_arctiny` arc
LEFT JOIN `xjq_arctype` tp ON tp.id=arc.typeid
LEFT JOIN `xjq_channeltype` ch ON ch.id=tp.channeltype
WHERE arc.id='$aid' ";
$trow = $Archives->dsql->GetOne($query);
$trow['maintable'] = ( trim($trow['maintable'])=='' ? 'xjq_archives' : trim($trow['maintable']) );
if($trow['issystem'] != -1)
{
$arcQuery = "SELECT arc.*,tp.typedir,tp.typename,tp.corank,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.sitepath,tp.siteurl
FROM `{$trow['maintable']}` arc LEFT JOIN `xjq_arctype` tp on arc.typeid=tp.id
LEFT JOIN `xjq_channeltype` ch on ch.id=arc.channel WHERE arc.id='$aid' ";
$arcRow =$Archives->dsql->GetOne($arcQuery);
if($arcRow['ismake']==-1 || $arcRow['corank']!=0 || $arcRow['arcrank']!=0 || ($arcRow['typeid']==0 && $arcRow['channel']!=-1) || $arcRow['money']>0)
{
$webname='{$cfg_phpurl}/view.php?aid='.$aid;
// exit();
}
}
else
{
$arcRow['id'] = $aid;
$arcRow['typeid'] = $trow['typeid'];
$arcRow['senddate'] = $trow['senddate'];
$arcRow['title'] = '';
$arcRow['ismake'] = 1;
$arcRow['arcrank'] = $trow['corank'];
$arcRow['namerule'] = $trow['namerule'];
$arcRow['typedir'] = $trow['typedir'];
$arcRow['money'] = 0;
$arcRow['filename'] = '';
$arcRow['moresite'] = $trow['moresite'];
$arcRow['siteurl'] = $trow['siteurl'];
$arcRow['sitepath'] = $trow['sitepath'];
}
$arcurl = GetFileUrl($arcRow['id'],$arcRow['typeid'],$arcRow['senddate'],$arcRow['title'],$arcRow['ismake'],$arcRow['arcrank'],
$arcRow['namerule'],$arcRow['typedir'],$arcRow['money'],$arcRow['filename'],$arcRow['moresite'],$arcRow['siteurl'],$arcRow['sitepath']);
$arcfile = GetFileUrl($arcRow['id'],$arcRow['typeid'],$arcRow['senddate'],$arcRow['title'],
$arcRow['ismake'],$arcRow['arcrank'],$arcRow['namerule'],$arcRow['typedir'],$arcRow['money'],$arcRow['filename']);
if(preg_match("#^http:#", $arcfile))
{
$arcfile = preg_replace("#^http://([^/]*)/#i", '/', $arcfile);
}
$truefile = GetTruePath().$arcfile;
if(!file_exists($truefile))
{
MakeArt($aid,TRUE);
}
$weburl=$arcurl;

$keyword=getTitle($aid);
$baiduurl = 'http://www.baidu.com/s?rn=100&wd='.$keyword;
$pagecode = RemoveUselessCode(file_get_contents($baiduurl));
//$pagecode = RemoveUselessCode($pagecode);
$seolist = getSeoList($pagecode);
$ranking = getNumber($seolist,$weburl);
return $ranking;
}*/
/*
//檢查收錄
function getBaiduShoulu($aid)
{
//利用傳遞ID,得到網(wǎng)址
$aid = $aid;
$aid = preg_replace("#[^0-9]#", '', $aid);
$Archives=new Archives();
//獲取主表信息
$query = "SELECT arc.*,ch.maintable,ch.addtable,ch.issystem,ch.editcon,
tp.typedir,tp.typename,tp.corank,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.sitepath,tp.siteurl
FROM `xjq_arctiny` arc
LEFT JOIN `xjq_arctype` tp ON tp.id=arc.typeid
LEFT JOIN `xjq_channeltype` ch ON ch.id=tp.channeltype
WHERE arc.id='$aid' ";
$trow = $Archives->dsql->GetOne($query);
$trow['maintable'] = ( trim($trow['maintable'])=='' ? 'xjq_archives' : trim($trow['maintable']) );
if($trow['issystem'] != -1)
{
$arcQuery = "SELECT arc.*,tp.typedir,tp.typename,tp.corank,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.sitepath,tp.siteurl
FROM `{$trow['maintable']}` arc LEFT JOIN `xjq_arctype` tp on arc.typeid=tp.id
LEFT JOIN `xjq_channeltype` ch on ch.id=arc.channel WHERE arc.id='$aid' ";
$arcRow =$Archives->dsql->GetOne($arcQuery);
if($arcRow['ismake']==-1 || $arcRow['corank']!=0 || $arcRow['arcrank']!=0 || ($arcRow['typeid']==0 && $arcRow['channel']!=-1) || $arcRow['money']>0)
{
$weburl='{$cfg_phpurl}/view.php?aid='.$aid;
// exit();
}
}
else
{
$arcRow['id'] = $aid;
$arcRow['typeid'] = $trow['typeid'];
$arcRow['senddate'] = $trow['senddate'];
$arcRow['title'] = '';
$arcRow['ismake'] = 1;
$arcRow['arcrank'] = $trow['corank'];
$arcRow['namerule'] = $trow['namerule'];
$arcRow['typedir'] = $trow['typedir'];
$arcRow['money'] = 0;
$arcRow['filename'] = '';
$arcRow['moresite'] = $trow['moresite'];
$arcRow['siteurl'] = $trow['siteurl'];
$arcRow['sitepath'] = $trow['sitepath'];
}
$arcurl = GetFileUrl($arcRow['id'],$arcRow['typeid'],$arcRow['senddate'],$arcRow['title'],$arcRow['ismake'],$arcRow['arcrank'],
$arcRow['namerule'],$arcRow['typedir'],$arcRow['money'],$arcRow['filename'],$arcRow['moresite'],$arcRow['siteurl'],$arcRow['sitepath']);
$arcfile = GetFileUrl($arcRow['id'],$arcRow['typeid'],$arcRow['senddate'],$arcRow['title'],
$arcRow['ismake'],$arcRow['arcrank'],$arcRow['namerule'],$arcRow['typedir'],$arcRow['money'],$arcRow['filename']);
if(preg_match("#^http:#", $arcfile))
{
$arcfile = preg_replace("#^http://([^/]*)/#i", '/', $arcfile);
}
$truefile = GetTruePath().$arcfile;
if(!file_exists($truefile))
{
MakeArt($aid,TRUE);
}
$weburl=$arcurl;
// exit();
//return $weburl;

$baiduurl2 = 'http://www.baidu.com/s?wd='.$weburl;
//$baiduurl2 = 'http://www.baidu.com/s?wd=site%3A'.$weburl;
$pagecode2 = RemoveUselessCode(file_get_contents($baiduurl2));
$pagecode = RemoveUselessCode($pagecode);
$seolist2 = getSeoList($pagecode2);
$Shoulu = getShoulu($seolist2,$weburl);
return $Shoulu;
}*/
//檢查排名
function getBaiduRanking($aid)
{
$aid = $aid;
$keyword=getTitle($aid);
$weburl=getUrl($aid);

$baiduurl = 'http://www.baidu.com/s?rn=100&wd='.$keyword;
$pagecode = RemoveUselessCode(file_get_contents($baiduurl));
//$pagecode = RemoveUselessCode($pagecode);
$seolist = getSeoList($pagecode);
$ranking = getNumber($seolist,$weburl);
return $ranking;
}
//檢查收錄
function getBaiduShoulu($aid)
{
$aid = $aid;
$weburl=getUrl($aid);

$baiduurl2 = 'http://www.baidu.com/s?wd='.$weburl;
//$baiduurl2 = 'http://www.baidu.com/s?wd=site%3A'.$webname;
$pagecode2 = RemoveUselessCode(file_get_contents($baiduurl2));
$pagecode = RemoveUselessCode($pagecode);
$seolist2 = getSeoList($pagecode2);
$Shoulu = getShoulu($seolist2,$weburl);
return $Shoulu;
}
/*
* 去除不必要代碼 減少總字符數(shù) 增加處理速度
* @return string
*/
function RemoveUselessCode($string)
{
$string = preg_replace("/<style.*>.*</style>/isU", '', $string);//樣式
$string = preg_replace("/<script.*>.*</script>/isU", '', $string);//JS
$string = preg_replace("/<div id=&;out&;>.*</form></div>/isU", '', $string);//上導航
$string = preg_replace("/<div id=&;rs&;>.*</body>/isU", '', $string);//相關搜索
$string = preg_replace("/http://w{1,4}.baidu.com/.*&;/isU", '"', $string);//百度連接
$string = preg_replace("/<font color=#CC0000>(.*)</font>/isU", '\1', $string);//文字顏色
$string = preg_replace("/<em>(.*)</em>/isU", '\1', $string);//em標簽
$string = preg_replace("/style=&;.*&;/isU", '', $string);//分樣式
$string = preg_replace("/onmousedown=&;.*&;/isU", '', $string);//動作代碼
//$string = preg_replace('/s/isU', '', $string);
return $string;
}


/*
* 獲得自然排名信息列表
* @return array
*/
function getSeoList($string)
{
//列表正則
$Preg='/<table cellpadding=&;0&; cellspacing=&;0&;.*id=&;d{1,3}&;.*>.*</table>/isU';
//標題正則
//$titlePreg='/<h3 class=&;t&;><a.*>(.*)</a></h3>/isU';
$titlePreg='/<td class=&;{0,1}f&;{0,1}.*>.*<a.* href=&;(.*)&;.*>(.*)</a>/isU';
//描述正則
$descriptionPreg='/<font size=&;{0,1}-1&;{0,1}>(.*)<br/isU';
//URL正則
$urlPreg='/<span class=&;g&;>(.*)</span>/isU';
//人工干預
$urlspecial='/<font color=&;{0,1}#008000&;{0,1}>(.*)</font>/isU';

preg_match_all($Preg,$string,$listinfo);
//print_r($listinfo);
if($listinfo == "")
{
return "-";
}
else
{
$i=0;
$list=array();
foreach($listinfo[0] as $listOne)
{
preg_match($titlePreg,$listOne,$title);
preg_match($descriptionPreg,$listOne,$description);
$description[1] = preg_replace('/<.*>(.*)</>/isU', '\1', $description[1]);
$list[$i]["title"]=$title[2];
$list[$i]["description"]=$description[1];
$list[$i]["url"]=$title[1];
$i++;
}
return $list;
}
}


/*
* 獲得排名
* @return string
*/
function getNumber(array $list,$weburl)
{
$number = 0;
foreach($list as $i=>$one)
{
if(stripos($one["url"],$weburl,0) !== false)
{
$number = $i+1;
return $number;
break;
}
}
return $number;
}

/*
* 判斷是否收錄
* @return string
*/
function getShoulu(array $list,$weburl)
{
$shoulu = '否';
foreach($list as $i=>$one)
{
if(stripos($one["url"],$weburl,0) !== false)
{
$shoulu = '是';
return $shoulu;
break;
}
}
return $shoulu;
}

?>

ext_baidu.php完整代碼

<?php
require_once(dirname(__FILE__).'/config.php');
require_once(DEDEADMIN.'/inc/inc_baidu.php');
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>百度收錄排名by : w2kan.com</title>
</head>

<body>

<?php
$dopost=$_GET['dopost'];
$aid=$_GET['aid'];
$qstr=$_GET['qstr'];
if(empty($dopost))
{
ShowMsg('對不起,你沒指定運行參數(shù)!','-1');
exit();
}
$aid = isset($aid) ? preg_replace("#[^0-9]#", '', $aid) : '';

/*--------------------------
//文檔百度排名
function getBaiduRanking(){ }
---------------------------*/
if($dopost=='BaiduRanking')
{
?>

<table width="500" border="1" align="center" cellpadding="1" cellspacing="1">
<tr bgcolor="#CCFFFF">
<td>ID</td>
<td>標題</td>
<td>百度排名</td>

</tr>

<?php
if( !empty($aid) && empty($qstr) ) $qstr = $aid;

if($qstr=='')
{
ShowMsg("參數(shù)無效!","recycling.php");
exit();
}
$qstrs = explode("`", $qstr);
foreach($qstrs as $aid)
{
echo '<tr><td>'.$aid.'</td>';
echo '<td>'.getTitle($aid).'</td>';
echo '<td>'.getBaiduRanking($aid).'</td></tr>';
}



}

else if($dopost=='BaiduShoulu')
{
?>

<table width="500" border="1" align="center" cellpadding="1" cellspacing="1">
<tr bgcolor="#CCFFFF">
<td>ID</td>
<td>標題</td>
<td>百度收錄</td>
</tr>

<?php
if( !empty($aid) && empty($qstr) ) $qstr = $aid;

if($qstr=='')
{
ShowMsg("參數(shù)無效!","recycling.php");
exit();
}
$qstrs = explode("`", $qstr);
foreach($qstrs as $aid)
{
echo '<tr><td>'.$aid.'</td>';
echo '<td>'.getTitle($aid).'</td>';
echo '<td>'.getBaiduShoulu($aid).'</td></tr>';
}



}else if($dopost=='BaiduZhonghe')

{
?>
<table width="500" border="1" align="center" cellpadding="1" cellspacing="1">
<tr bgcolor="#CCFFFF">
<td>ID</td>
<td>標題</td>
<td>百度排名</td>
<td>百度收錄</td>
</tr>

<?php
if( !empty($aid) && empty($qstr) ) $qstr = $aid;

if($qstr=='')
{
ShowMsg("參數(shù)無效!","recycling.php");
exit();
}
$qstrs = explode("`", $qstr);
foreach($qstrs as $aid)
{
echo '<tr><td>'.$aid.'</td>';
echo '<td>'.getTitle($aid).'</td>';
echo '<td>'.getBaiduRanking($aid).'</td>';
echo '<td>'.getBaiduShoulu($aid).'</td></tr>';
}



}
?>
</table>
<br/>
<br/>

<table width="500" border="0" align="center" cellpadding="0" cellspacing="1">
<tr>
<td><a href="content_list.php">返回列表</a></td>
<td>QQ:793664261

by@ w2kan.com</td>
</tr>
</table>

</body>
</html>

list.js 完整代碼

<!--
if(moz) {
extendEventObject();
extendElementModel();
emulateAttachEvent();
}
function viewArc(aid){
if(aid==0) aid = getOneItem();
window.open("archives_do.php?aid="+aid+"&dopost=viewArchives");
}
function kwArc(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
if(qstr=='')
{
alert('必須選擇一個或多個文檔!');
return;
}
location="archives_do.php?aid="+aid+"&dopost=makekw&qstr="+qstr;
}
function editArc(aid){
if(aid==0) aid = getOneItem();
location="archives_do.php?aid="+aid+"&dopost=editArchives";
}
function updateArc(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
location="archives_do.php?aid="+aid+"&dopost=makeArchives&qstr="+qstr;
}
function checkArc(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
location="archives_do.php?aid="+aid+"&dopost=checkArchives&qstr="+qstr;
}
function moveArc(e, obj, cid){
var qstr=getCheckboxItem();
if(qstr=='')
{
alert('必須選擇一個或多個文檔!');
return;
}
LoadQuickDiv(e, 'archives_do.php?dopost=moveArchives&qstr='+qstr+'&channelid='+cid+'&rnd='+Math.random(), 'moveArchives', '450px', '180px');
ChangeFullDiv('show');
}
function adArc(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
location="archives_do.php?aid="+aid+"&dopost=commendArchives&qstr="+qstr;
}

function cAtts(jname, e, obj)
{
var qstr=getCheckboxItem();
var screeheight = document.body.clientHeight + 20;
if(qstr=='')
{
alert('必須選擇一個或多個文檔!');
return;
}
LoadQuickDiv(e, 'archives_do.php?dopost=attsDlg&qstr='+qstr+'&dojob='+jname+'&rnd='+Math.random(), 'attsDlg', '450px', '160px');
ChangeFullDiv('show', screeheight);
}

function delArc(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
location="archives_do.php?qstr="+qstr+"&aid="+aid+"&dopost=delArchives";
}

function QuickEdit(aid, e, obj)
{
LoadQuickDiv(e, 'archives_do.php?dopost=quickEdit&aid='+aid+'&rnd='+Math.random(), 'quickEdit', '450px', '300px');
ChangeFullDiv('show');
}
//百度排名
function getBaiduRanking(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
if(qstr=='')
{
alert('必須選擇一個或多個文檔!');
return;
}
location="ext_baidu.php?aid="+aid+"&dopost=BaiduRanking&qstr="+qstr;
}
//百度收錄
function getBaiduShoulu(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
if(qstr=='')
{
alert('必須選擇一個或多個文檔!');
return;
}
location="ext_baidu.php?aid="+aid+"&dopost=BaiduShoulu&qstr="+qstr;
}
//百度收錄排名 綜合查詢
function getBaiduZhonghe(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
if(qstr=='')
{
alert('必須選擇一個或多個文檔!');
return;
}
location="ext_baidu.php?aid="+aid+"&dopost=BaiduZhonghe&qstr="+qstr;
}
//上下文菜單
function ShowMenu(evt,obj,aid,atitle)
{
var popupoptions
popupoptions = [
new ContextItem("瀏覽文檔",function(){ viewArc(aid); }),
new ContextItem("編輯屬性",function(){ QuickEdit(aid, evt, obj); }),
new ContextItem("編輯文檔",function(){ editArc(aid); }),
new ContextSeperator(),
new ContextItem("更新HTML",function(){ updateArc(aid); }),
new ContextItem("審核文檔",function(){ checkArc(aid); }),
new ContextItem("推薦文檔",function(){ adArc(aid); }),
new ContextItem("刪除文檔",function(){ delArc(aid); }),
new ContextSeperator(),
new ContextItem("復制(<u>C</u>)",function(){ copyToClipboard(atitle); }),
new ContextItem("重載頁面",function(){ location.reload(); }),
new ContextSeperator(),
new ContextItem("全部選擇",function(){ selAll(); }),
new ContextItem("取消選擇",function(){ noSelAll(); }),
new ContextSeperator(),
new ContextItem("關閉菜單",function(){})
]
ContextMenu.display(evt,popupoptions);
//location="catalog_main.php";
}
//獲得選中文件的文件名
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;
}

//獲得選中其中一個的id
function getOneItem()
{
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)
{
allSel = document.form2.arcID[i].value;
break;
}
}
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;
}
}
}
-->



收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266
婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
欧美一区二区三区免费在线看| 在线欧美小视频| 国产日韩欧美激情| 欧美日韩国产大片| 9色porny自拍视频一区二区| 狠狠色综合播放一区二区| 亚洲午夜精品17c| 亚洲区小说区图片区qvod| 精品国产乱码久久久久久图片| 欧美精品亚洲二区| 欧美三级韩国三级日本一级| 9久草视频在线视频精品| 丁香六月综合激情| 国产成人99久久亚洲综合精品| 久久精品国产秦先生| 亚洲成人黄色小说| 亚洲成人动漫一区| 天天av天天翘天天综合网色鬼国产| 一区二区三区不卡在线观看| 一区二区三区在线免费观看| 一区二区三区在线观看网站| 亚洲综合在线观看视频| 一区二区三区国产精品| 亚洲国产精品久久一线不卡| 亚洲一区在线电影| 大胆欧美人体老妇| 国产成人午夜片在线观看高清观看| 久久精品国产免费看久久精品| 国内精品国产三级国产a久久| 精品中文av资源站在线观看| 国产专区欧美精品| 国产成人午夜精品影院观看视频| 国产aⅴ综合色| 在线视频中文字幕一区二区| 欧美精品一二三| 久久久亚洲欧洲日产国码αv| 国产欧美一区二区三区沐欲| 成人欧美一区二区三区白人| 亚洲国产一区二区a毛片| 日本欧美加勒比视频| 日韩国产欧美在线观看| 国产精品亚洲第一区在线暖暖韩国| jizzjizzjizz欧美| 欧美日韩一区二区三区高清| 欧美精品一区二区久久久| 欧美国产综合一区二区| 一区二区三区在线影院| 日本欧美在线观看| 粉嫩aⅴ一区二区三区四区五区 | 国产午夜精品久久久久久久| 亚洲欧洲中文日韩久久av乱码| 亚洲国产精品综合小说图片区| 开心九九激情九九欧美日韩精美视频电影 | 亚洲国产一区二区视频| 蜜臀av一区二区| 国产剧情在线观看一区二区| 91在线国产福利| 欧美一区三区四区| 国产精品短视频| 麻豆精品新av中文字幕| 成人av在线网| 欧美一区二区三区免费大片| 国产婷婷色一区二区三区在线| 亚洲成人你懂的| 99精品视频在线观看| 欧美videos中文字幕| 亚洲你懂的在线视频| 日韩经典一区二区| 色婷婷国产精品| 欧美国产1区2区| 老司机一区二区| 在线精品视频小说1| 欧美国产一区在线| 激情欧美一区二区| 欧美精品粉嫩高潮一区二区| 亚洲视频1区2区| 国产99精品视频| 久久综合久久综合九色| 免费精品视频在线| 3d成人h动漫网站入口| 一区二区三区高清在线| 95精品视频在线| 国产日韩影视精品| 麻豆中文一区二区| 在线观看欧美黄色| 亚洲精品成人精品456| 成人av小说网| 日本一区二区三区国色天香 | 日韩一区国产二区欧美三区| 一区二区三区视频在线看| 国产99久久久久久免费看农村| 亚洲精品一区在线观看| 五月天激情综合网| 欧美精品丝袜久久久中文字幕| 亚洲免费看黄网站| 日本道精品一区二区三区| 国产精品人成在线观看免费| 成人精品gif动图一区| 中文字幕国产精品一区二区| 国产成人免费视频一区| 国产午夜精品福利| 风间由美性色一区二区三区| 日本一区二区三级电影在线观看 | 久久久久久久一区| 精品伊人久久久久7777人| 精品少妇一区二区| 国产精品亚洲第一区在线暖暖韩国| www久久精品| av一本久道久久综合久久鬼色| 亚洲欧美综合色| 91一区二区在线| 亚洲成人午夜电影| 精品国产一区二区三区不卡 | 亚洲欧美影音先锋| 日本道在线观看一区二区| 亚洲大片在线观看| 日韩一级欧美一级| 国产一区二区导航在线播放| 久久精品欧美一区二区三区麻豆| 成人激情午夜影院| 亚洲夂夂婷婷色拍ww47| 5858s免费视频成人| 国产美女视频91| 一区二区三区欧美视频| 欧美男人的天堂一二区| 国产乱码精品一区二区三区五月婷| 国产精品进线69影院| 在线电影欧美成精品| 懂色av中文字幕一区二区三区| 亚洲综合在线免费观看| 欧美成人精品高清在线播放| 91网站最新地址| 成人黄色777网| 中文字幕亚洲区| 欧美精品一区二区三区蜜桃视频| 亚洲精品老司机| 日韩欧美一级在线播放| 不卡视频一二三四| 水野朝阳av一区二区三区| 国产亚洲精久久久久久| 欧美三级电影网| 粉嫩aⅴ一区二区三区四区| 欧美日韩五月天| 国产精品一二三区在线| 亚洲国产日韩av| 日本一区二区三区四区在线视频 | 久久综合精品国产一区二区三区| 色八戒一区二区三区| 精品午夜一区二区三区在线观看| 亚洲精选视频在线| 国产亚洲欧美激情| 欧美大尺度电影在线| 欧美性xxxxxxxx| 91女神在线视频| 国产精品 欧美精品| 蜜乳av一区二区| 三级在线观看一区二区| 亚洲一区二区三区自拍| 国产精品乱码一区二区三区软件| 精品欧美一区二区久久| 欧美日韩午夜在线视频| 欧美综合在线视频| 色94色欧美sute亚洲线路一ni| 成人免费毛片嘿嘿连载视频| 国产一区二区福利| 国产一区二区三区香蕉| 麻豆精品在线视频| 午夜视频一区在线观看| 亚洲线精品一区二区三区 | 亚洲综合一区在线| 久久精品日韩一区二区三区| 欧美成人激情免费网| 91精品在线免费观看| 欧美日韩中字一区| 国产高清精品在线| 国产成人欧美日韩在线电影 | 色婷婷综合在线| 91在线观看地址| 99视频在线观看一区三区| 成人教育av在线| 99re亚洲国产精品| 国产精品一区二区三区四区| 国产精品18久久久久久久网站| 国产一区二区三区综合| 国产成人在线观看| 99久久免费精品| 欧美在线观看视频一区二区三区| 欧美亚洲高清一区二区三区不卡| 91国产丝袜在线播放| 欧美久久久久中文字幕| 欧美videofree性高清杂交| 久久影院电视剧免费观看| 国产精品久久久久永久免费观看 | 一区二区三区在线影院| 亚洲一级在线观看| 日韩中文字幕不卡| 免费久久99精品国产| 国产成人自拍高清视频在线免费播放| 国产91丝袜在线观看| 日本乱人伦一区|