欧美阿v视频在线大全_亚洲欧美中文日韩V在线观看_www性欧美日韩欧美91_亚洲欧美日韩久久精品

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

織夢(mèng)dedecms后臺(tái)文章百度收錄排名開發(fā)教程

POST TIME:2020-03-31 11:55

1. 先把 :inc_baidu.php 放入后臺(tái)根目錄的的 inc 文件夾內(nèi),

2. 再把ext_baidu.php放入后臺(tái)根目錄

3. 然后修改后臺(tái)根目錄下的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. 最后修改后臺(tái)根目錄下的js文件夾 的list.js :

代碼如下:
//百度排名
function getBaiduRanking(aid){
var qstr=getCheckboxItem();
if(aid==0) aid = getOneItem();
if(qstr=='')
{
alert('必須選擇一個(gè)或多個(gè)文檔!');
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('必須選擇一個(gè)或多個(gè)文檔!');
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('必須選擇一個(gè)或多個(gè)文檔!');
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');

//得到標(biāo)題
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);//上導(dǎo)航
$string = preg_replace("/<div id=&;rs&;>.*</body>/isU", '', $string);//相關(guān)搜索
$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標(biāo)簽
$string = preg_replace("/style=&;.*&;/isU", '', $string);//分樣式
$string = preg_replace("/onmousedown=&;.*&;/isU", '', $string);//動(dòng)作代碼
//$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';
//標(biāo)題正則
//$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';
//人工干預(yù)
$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('對(duì)不起,你沒指定運(yùn)行參數(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>標(biāo)題</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>標(biāo)題</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>標(biāo)題</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('必須選擇一個(gè)或多個(gè)文檔!');
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('必須選擇一個(gè)或多個(gè)文檔!');
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('必須選擇一個(gè)或多個(gè)文檔!');
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('必須選擇一個(gè)或多個(gè)文檔!');
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('必須選擇一個(gè)或多個(gè)文檔!');
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('必須選擇一個(gè)或多個(gè)文檔!');
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("復(fù)制(<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("關(guān)閉菜單",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;
}

//獲得選中其中一個(gè)的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
欧美阿v视频在线大全_亚洲欧美中文日韩V在线观看_www性欧美日韩欧美91_亚洲欧美日韩久久精品
  • <rt id="w000q"><acronym id="w000q"></acronym></rt>
  • <abbr id="w000q"></abbr>
    <rt id="w000q"></rt>
    日韩欧美国产电影| 久久成人免费网| 成人aaaa免费全部观看| 日韩欧美视频免费观看| 精品国产a毛片| 免费看日韩a级影片| 欧亚乱熟女一区二区在线| 欧美日韩在线亚洲一区蜜芽| 亚洲老妇xxxxxx| 91麻豆精品秘密| 91国偷自产一区二区三区成为亚洲经典 | 91小视频在线免费看| 国产精品白丝喷水在线观看| 中文欧美字幕免费| 成人久久久精品乱码一区二区三区 | 国产精品久久久久野外| 欧美午夜精品久久久久久孕妇| 亚洲另类春色校园小说| wwwxxx色| 欧美精品乱码久久久久久按摩| 天天综合天天综合色| 亚洲国产综合视频| 日韩欧美高清dvd碟片| 美国毛片一区二区三区| 大胸美女被爆操| 日本一区免费视频| 不卡视频免费播放| 欧美亚洲精品一区| 肉丝袜脚交视频一区二区| 性高潮久久久久久久| 国产亚洲一区二区三区四区 | 免费国偷自产拍精品视频| 欧美日韩高清一区二区三区| 视频一区在线播放| 日本xxxxxxxxx18| 日本一区二区不卡视频| 99久久精品一区二区| 欧美日韩精品一区视频| 全部av―极品视觉盛宴亚洲| 中文字幕免费在线看线人动作大片| 国产欧美一区二区三区鸳鸯浴| 丁香天五香天堂综合| 欧美色区777第一页| 日韩成人伦理电影在线观看| www..com.cn蕾丝视频在线观看免费版| 久久奇米777| 97精品视频在线观看自产线路二| 欧美精品一卡二卡| 国内外精品视频| 一本色道久久加勒比精品| 亚洲电影一级黄| 日韩毛片无码永久免费看| 国产精品久久夜| 99久久久无码国产精品性波多| 精品国产髙清在线看国产毛片 | 国产麻豆91精品| 色综合久久中文字幕综合网 | 亚洲成av人影院在线观看网| 久久久久久国产免费a片| 日韩一区有码在线| 强迫凌虐淫辱の牝奴在线观看| 精品日韩一区二区| 99国产精品一区| 欧美成人官网二区| 不卡的av网站| 日韩精品一区二区三区在线播放 | 乱老熟女一区二区三区| 亚洲亚洲人成综合网络| 国产农村妇女精品一区| 亚洲国产婷婷综合在线精品| 国产小视频自拍| 一区二区三区成人在线视频| 国产精品久久久久久久av| 亚洲精品精品亚洲| 国产馆在线观看| 午夜精品久久久久久久久久久| 日本一级片免费| 奇米888四色在线精品| 色婷婷av一区二区三区大白胸| 久久99精品网久久| 欧美日本一区二区三区四区| 成人性生交大片免费看中文| 日韩精品一区国产麻豆| 三上悠亚 电影| 中国色在线观看另类| 99久久国产精| 亚洲一二三四区| 一本到一区二区三区| 国产综合成人久久大片91| 6080国产精品一区二区| 99久久精品国产导航| 国产午夜三级一区二区三| 91av在线免费| 一区二区三区欧美日| 成人免费毛片xxx| 精品一区二区三区久久| 日韩一区二区麻豆国产| 极品白嫩少妇无套内谢| 亚洲少妇30p| 日韩精品123区| 国产一区二区三区在线观看精品| 日韩一级欧美一级| 久久久久久久穴| 亚洲免费观看高清完整版在线| 激情高潮到大叫狂喷水| 久久成人久久爱| 精品少妇一区二区三区免费观看| 日本性生活一级片| 亚洲国产三级在线| 在线观看亚洲精品| av欧美精品.com| 综合欧美一区二区三区| 极品美妇后花庭翘臀娇吟小说| 精品综合久久久久久8888| 日韩视频国产视频| 少妇一级淫片免费放播放| 亚洲福利国产精品| 欧美久久久久久久久久| 欧美老女人bb| 亚洲自拍另类综合| 精品婷婷伊人一区三区三| 成人免费播放视频| 一区二区不卡在线视频 午夜欧美不卡在| 色综合一区二区| 成人av免费在线播放| 中文字幕一区三区| 久热这里有精品| www.日韩av| 亚洲精品网站在线观看| 在线影视一区二区三区| 成年人性生活视频| 亚洲成人av免费| 日韩欧美一二三区| 日韩人妻无码精品综合区| 久久成人免费电影| 国产欧美视频在线观看| 国产福利视频网站| 99久久99久久综合| 一区二区在线免费| 欧美精品日日鲁夜夜添| 亚洲av无码一区二区三区观看| 蜜臀av性久久久久蜜臀av麻豆 | 国产chinese中国hdxxxx| 日韩高清欧美激情| 精品日产卡一卡二卡麻豆| 成人黄色免费网址| 国产精品一区二区三区四区| 国产精品国产三级国产专播品爱网 | 国产一区91精品张津瑜| 中国色在线观看另类| 91成人在线精品| 日本一区二区在线观看视频| 日本欧美在线观看| 亚洲精品在线观看视频| 你懂得在线观看| 免费欧美一级片| 日韩成人av影视| 日本一区二区三区dvd视频在线| 日韩一级片av| 香港三日本8a三级少妇三级99| 精品无码三级在线观看视频 | 国产欧美精品区一区二区三区| 久久国产欧美日韩精品| 久久综合狠狠综合| 亚洲伦理一区二区三区| 中文字幕av一区二区三区人妻少妇 | 日本一区二区动态图| 在线视频综合导航| 成人在线观看一区二区| 国产自产高清不卡| 一区二区在线观看视频在线观看| 日韩三级视频中文字幕| 国产又粗又硬又长又爽| 性活交片大全免费看| 国模娜娜一区二区三区| 亚洲乱码国产乱码精品精的特点 | 欧美军同video69gay| 日本乱子伦xxxx| 91在线观看一区二区| 天堂影院一区二区| 国产精品天干天干在观线| 欧美日韩视频在线一区二区| 日本一级免费视频| 91理论电影在线观看| 久久成人免费日本黄色| 一区二区三区中文在线| 日韩你懂的在线观看| 我家有个日本女人| 人妻丰满熟妇aⅴ无码| 成人免费视频一区| 免费三级欧美电影| 亚洲精品福利视频网站| 久久久www免费人成精品| 欧美三级日本三级少妇99| 亚洲精品天堂网| 丝袜熟女一区二区三区| 成人av免费在线| 美女脱光内衣内裤视频久久网站| 亚洲丝袜精品丝袜在线| 久久亚洲一区二区三区四区|