亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? edittable.php

?? 類似youtube的視頻分享網站源碼。有后臺管理系統及模板
?? PHP
?? 第 1 頁 / 共 2 頁
字號:
<?php
include_once ('./config.php');
include_once('./editor_functions.php');
include_once ('./includes/common.php');
include_once ('./lang/'.$lang_include);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title><?php echo $lang['titles']['edittable']; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
@import url(<?php echo WP_WEB_DIRECTORY; ?>dialoge_theme.css);
#tab_one {
	position : absolute; 
	width:420;
	top: 24px; 
	left: 4px;
	height: 300px; 
	text-align: center; 
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size : xx-small; 
	background: threedface; 
	border-bottom: 2px THREEDDARKSHADOW solid;
	border-right: 2px THREEDDARKSHADOW solid;
	border-left: 2px THREEDHIGHLIGHT solid;
}
#tab_two {
	display: block; 
	width:420;
	position : absolute; 
	top: 24px; 
	left: 4px;	
	height: 300px; 
	text-align: center; 
	visibility: hidden; 
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif; 
	font-size : xx-small;	
	background: threedface; 
	border-bottom: 2px THREEDDARKSHADOW solid;
	border-right: 2px THREEDDARKSHADOW solid;
	border-left: 2px THREEDHIGHLIGHT solid;
}
#tab_three {
	width:420;
	position : absolute; 
	top: 24px; 
	left: 4px;
	height: 300px; 
	text-align: center;
	visibility: hidden; 
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size : xx-small; 
	background: threedface; 
	border-bottom: 2px THREEDDARKSHADOW solid;
	border-right: 2px THREEDDARKSHADOW solid;
	border-left: 2px THREEDHIGHLIGHT solid;
}
-->
</style>
<script language="JavaScript" type="text/javascript" src="<?php echo WP_WEB_DIRECTORY; ?>js/dialogEditorShared.js"></script>
<script language="JavaScript" type="text/javascript" src="<?php echo WP_WEB_DIRECTORY; ?>js/dialogShared.js"></script>
<script type="text/javascript">
<!--//
function on_enter_cell() {
	document.getElementById('tab_one').style.visibility = "visible"
	document.getElementById('tab_two').style.visibility = "hidden"
	document.getElementById('tab_three').style.visibility = "hidden"
		
	document.getElementById('tbar1').className = "tbuttonUpLeft"
	document.getElementById('tbar2').className = "tbuttonRight"
	document.getElementById('tbar3').className = "tbuttonDown"
}

function on_enter_row() {
	document.getElementById('tab_one').style.visibility = "hidden"
	document.getElementById('tab_two').style.visibility = "visible"
	document.getElementById('tab_three').style.visibility = "hidden"
 
	document.getElementById('tbar1').className = "tbuttonLeft"
	document.getElementById('tbar2').className = "tbuttonUp"
	document.getElementById('tbar3').className = "tbuttonRight"
}

function on_enter_table() {
	document.getElementById('tab_one').style.visibility = "hidden"
	document.getElementById('tab_two').style.visibility = "hidden"
	document.getElementById('tab_three').style.visibility = "visible"
 
 	document.getElementById('tbar1').className = "tbuttonDown"
 	document.getElementById('tbar2').className = "tbuttonLeft"
	document.getElementById('tbar3').className = "tbuttonUpRight"
}
function wp_create_image_html(obj,img) {
	if (image_action == 'cell') {
		document.getElementById('cellBackground').value = img;
	} else if (image_action == 'table') {
		document.getElementById('tableBackground').value = img;
	}
	updateStyle();
}
var image_action = null
function open_image_window(action) {
	image_action = action
	szURL= '<?php echo WP_WEB_DIRECTORY; ?>dialog_frame.php?window=' + parentWindow.wp_directory + obj.imagewindow + "&instance_img_dir="+obj.instance_img_dir+"&lang="+obj.instance_lang; 
	imgwin = wp_openDialog(szURL,'modal',730,466);
}
function wp_docolor(obj,Action,color) {
	if (color != null) {
		if (Action == 1) {
			document.getElementById('table_bordercolor').value = color;
			document.getElementById('tableborderchosencolor').style.backgroundColor = color;
			updateStyle();
			}
		if (Action == 2) {
			document.getElementById('table_bgcolor').value = color;
			document.getElementById('tablebgchosencolor').style.backgroundColor = color;
			updateStyle();
			}
		if (Action == 3) {
			document.getElementById('tr_bgcolor').value = color;
			document.getElementById('trbgchosencolor').style.backgroundColor = color;
			updateStyle();
			}
		if (Action == 4) {
			document.getElementById('td_bgcolor').value = color;
			document.getElementById('tdbgchosencolor').style.backgroundColor = color;
			updateStyle();
		}
	}
}
var currentBorder;
//this function detects the properties of the table and initialises the form's values
function initiate() {
		thisCell = parentWindow.wp_thisCell;
		thisRow = parentWindow.wp_thisRow;
		thisTable = parentWindow.wp_thisTable;
		if (thisTable.style.borderCollapse) {
			if (thisTable.style.borderCollapse == "collapse") {
				document.getElementById('collapse').checked = true;
			}
		}
		//init current values
		// Table
		document.getElementById('table_border').value = thisTable.getAttribute("BORDER");
		currentBorder = thisTable.getAttribute("BORDER");
		document.getElementById('table_cellpadding').value = thisTable.getAttribute("CELLPADDING");
		document.getElementById('table_cellspacing').value = thisTable.getAttribute("CELLSPACING");
		if (thisTable.getAttribute("WIDTH") != "") {
			document.getElementById('table_width').value = thisTable.getAttribute("WIDTH");
		}
		if (thisTable.style.width != "") {
			document.getElementById('table_width').value = thisTable.style.width;
		}
		if (thisTable.getAttribute("HEIGHT") != "") {
			document.getElementById('table_height').value = thisTable.getAttribute("HEIGHT");
		}
		if (thisTable.style.height != "") {
			document.getElementById('table_height').value = thisTable.style.height;
		}
		document.getElementById('table_align').value = thisTable.getAttribute("ALIGN");
		document.getElementById('tablebgchosencolor').style.backgroundColor = thisTable.getAttribute("BGCOLOR");
		document.getElementById('table_bgcolor').value = thisTable.getAttribute("BGCOLOR");
		document.getElementById('tableborderchosencolor').style.backgroundColor = thisTable.getAttribute("BORDERCOLOR");
		document.getElementById('table_bordercolor').value = thisTable.getAttribute("BORDERCOLOR");
		document.getElementById('tableBackground').value = thisTable.getAttribute("BACKGROUND");
		// Cell
		document.getElementById('td_width').value = thisCell.getAttribute("WIDTH");
		document.getElementById('td_height').value = thisCell.getAttribute("HEIGHT");
		document.getElementById('td_align').value = thisCell.getAttribute("ALIGN");
		document.getElementById('td_valign').value = thisCell.getAttribute("VALIGN");
		document.getElementById('cellBackground').value = thisCell.getAttribute("BACKGROUND");
		document.getElementById('tdbgchosencolor').style.backgroundColor = thisCell.getAttribute("BGCOLOR");
		document.getElementById('td_bgcolor').value = thisCell.getAttribute("BGCOLOR");
		// Row
		document.getElementById('tr_align').value = thisRow.getAttribute("ALIGN");
		document.getElementById('tr_valign').value = thisRow.getAttribute("VALIGN");
		document.getElementById('trbgchosencolor').style.backgroundColor = thisRow.getAttribute("BGCOLOR");
		document.getElementById('tr_bgcolor').value = thisRow.getAttribute("BGCOLOR");
		
		updateStyle();
}

function apply() {
	
	if (document.getElementById('collapse').checked == true) {
		thisTable.style.borderCollapse = "collapse";
	} else {
		thisTable.style.borderCollapse = "separate";
	}
	//  Cell 
	thisCell.setAttribute("BGCOLOR", document.getElementById('td_bgcolor').value, 0);
	thisCell.setAttribute("VALIGN", document.getElementById('td_valign').value, 0);
	thisCell.setAttribute("ALIGN", document.getElementById('td_align').value, 0);
	thisCell.setAttribute("WIDTH", document.getElementById('td_width').value,0);
	
	thisCell.setAttribute("HEIGHT", document.getElementById('td_height').value,0);
	thisCell.setAttribute('BACKGROUND', document.getElementById('cellBackground').value,0);
	// Row 
	thisRow.setAttribute("BGCOLOR", document.getElementById('tr_bgcolor').value, 0);
	thisRow.setAttribute("VALIGN", document.getElementById('tr_valign').value, 0);
	thisRow.setAttribute("ALIGN", document.getElementById('tr_align').value, 0);
	//  Table 
	thisTable.setAttribute("BGCOLOR", document.getElementById('table_bgcolor').value, 0);
	thisTable.setAttribute("BORDER", document.getElementById('table_border').value, 0);
	thisTable.setAttribute("CELLSPACING", document.getElementById('table_cellspacing').value, 0);
	thisTable.setAttribute("CELLPADDING", document.getElementById('table_cellpadding').value, 0);
	
	thisTable.setAttribute("WIDTH", document.getElementById('table_width').value, 0);
	
	if (thisTable.style.width)
	thisTable.style.width=document.getElementById('table_width').value;
	
	thisTable.setAttribute("HEIGHT", document.getElementById('table_height').value, 0);
	if (thisTable.style.height)
		thisTable.style.height=document.getElementById('table_height').value;
	
	thisTable.setAttribute("ALIGN", document.getElementById('table_align').value, 0);
	thisTable.setAttribute("BORDERCOLOR", document.getElementById('table_bordercolor').value, 0);
	thisTable.setAttribute("BACKGROUND", document.getElementById('tableBackground').value, 0);
	
	// column
	var cellidx = thisCell.cellIndex
	var rows = thisTable.getElementsByTagName('TR')
	var n=rows.length
	for (var i = 0; i < n; i++) {
		if (rows[i].childNodes[cellidx]) {
			if (rows[i].childNodes[cellidx] != thisCell) {
				if (rows[i].childNodes[cellidx].width) {
					if (rows[i].childNodes[cellidx].rowSpan == thisCell.rowSpan) {
						rows[i].childNodes[cellidx].setAttribute("WIDTH", document.getElementById('td_width').value,0);
					}
				}
			}	
		}
	}
	// row
	var cells = thisRow.getElementsByTagName('TD')
	var n=cells.length
	for (var i = 0; i < n; i++) {
		if (cells[i] != thisCell) {
			if (cells[i].height) {
				if (cells[i].colSpan == thisCell.colSpan) {
					cells[i].setAttribute("HEIGHT", document.getElementById('td_height').value,0);
				}
			}
		}	
	}
	
	parentWindow.wp_current_obj.edit_object.focus();
	if (document.getElementById('table_border').value == '0') {
		parentWindow.wp_show_borders(parentWindow.wp_current_obj);
	} else if ((parentWindow.wp_current_obj.border_visible == true) && (currentBorder == 0) && (document.getElementById('table_border').value != currentBorder)) {
		parentWindow.wp_hide_borders(parentWindow.wp_current_obj);
		parentWindow.wp_show_borders(parentWindow.wp_current_obj);
	}
	window.close();
	return false;
}
//creates the table style preview
function updateStyle() {
	// table
	document.getElementById('tbl').borderColor = document.getElementById('table_bordercolor').value;
	if (document.getElementById('collapse').checked == true) {
		document.getElementById('tbl').style.borderCollapse = "collapse";
	} else {
		document.getElementById('tbl').style.borderCollapse = "separate";
	}
	document.getElementById('tbl').setAttribute("border",document.getElementById('table_border').value);
	document.getElementById('tbl').cellPadding = document.getElementById('table_cellpadding').value; 
	document.getElementById('tbl').cellSpacing = document.getElementById('table_cellspacing').value;
	document.getElementById('tbl').style.backgroundColor = document.getElementById('table_bgcolor').value;
	document.getElementById('tbl').setAttribute("align",document.getElementById('table_align').value);
	document.getElementById('tbl').setAttribute('background', document.getElementById('tableBackground').value);
	//row
	document.getElementById('tbl_tr').setAttribute("vAlign",document.getElementById('tr_valign').value);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产一区视频| 洋洋成人永久网站入口| 欧美福利视频一区| 欧美日韩一二三区| 欧美吻胸吃奶大尺度电影| 91福利资源站| 在线视频综合导航| 欧美日韩在线综合| 欧美一级在线观看| 久久蜜桃香蕉精品一区二区三区| 717成人午夜免费福利电影| 欧美一区二区三区精品| 日韩美女主播在线视频一区二区三区| 91精品国产综合久久久久久漫画| 欧美二区三区91| 精品国内二区三区| 中文字幕日韩一区| 亚洲成人免费视频| 久久97超碰国产精品超碰| 国产伦精品一区二区三区免费| 国产精品亚洲视频| 欧美最猛黑人xxxxx猛交| 91超碰这里只有精品国产| 精品久久久久香蕉网| 国产精品久久久久久福利一牛影视 | 一区二区三区四区国产精品| 亚洲精品国产高清久久伦理二区| 亚洲v精品v日韩v欧美v专区| 老鸭窝一区二区久久精品| 成人激情小说乱人伦| 欧美日韩免费一区二区三区| 欧美大片一区二区三区| 国产精品私房写真福利视频| 亚洲午夜免费视频| 国产乱妇无码大片在线观看| 色噜噜久久综合| 精品sm捆绑视频| 亚洲一区二区影院| 国产高清视频一区| 9191成人精品久久| 亚洲视频一区在线| 国产毛片精品国产一区二区三区| 色一区在线观看| 国产视频911| 日韩一区精品视频| 色综合色综合色综合| 欧美成人国产一区二区| 亚洲精品v日韩精品| 高清久久久久久| 日韩欧美一级片| 天天影视涩香欲综合网| 91在线精品一区二区三区| 精品国产髙清在线看国产毛片| 亚洲色图欧美偷拍| 国产福利一区二区三区| 欧美日韩激情在线| 1000精品久久久久久久久| 精品一区二区三区久久久| 欧美日韩一级黄| 亚洲第一主播视频| 欧美性一级生活| 亚洲猫色日本管| 97久久超碰精品国产| 亚洲女女做受ⅹxx高潮| 国产不卡在线播放| 国产日韩精品一区二区浪潮av | 国产在线一区观看| 欧美一区二区视频网站| 婷婷丁香久久五月婷婷| 欧美日韩亚洲综合| 爽好久久久欧美精品| 欧美日韩和欧美的一区二区| 一区二区高清免费观看影视大全| 91在线无精精品入口| 亚洲丝袜精品丝袜在线| 91麻豆精品秘密| 亚洲三级理论片| 色婷婷久久久亚洲一区二区三区| 国产精品免费aⅴ片在线观看| 高清免费成人av| 亚洲欧美在线高清| 在线亚洲免费视频| 五月天一区二区| 日韩精品一区二区三区中文精品| 久久99久久久欧美国产| 久久久www免费人成精品| 成人网男人的天堂| 亚洲丝袜自拍清纯另类| 欧美日韩夫妻久久| 久久精品国产第一区二区三区| 精品国产乱码久久久久久老虎| 国产精品99久久久| 亚洲天堂免费在线观看视频| 欧美亚洲禁片免费| 日本午夜精品视频在线观看 | 亚洲视频在线一区观看| 91久久精品日日躁夜夜躁欧美| 香蕉成人啪国产精品视频综合网| 欧美精品在欧美一区二区少妇| 免费久久精品视频| 欧美激情资源网| 一本大道久久a久久综合| 亚洲成人激情自拍| 国产午夜亚洲精品羞羞网站| 色婷婷久久综合| 美女视频一区二区| 亚洲欧美中日韩| 日韩精品一区二区在线| 成人h动漫精品一区二区| 五月综合激情日本mⅴ| 国产色婷婷亚洲99精品小说| 欧美性猛交xxxxxxxx| 狠狠色狠狠色合久久伊人| 亚洲狠狠丁香婷婷综合久久久| 日韩三级av在线播放| 色婷婷av一区二区| 成人综合婷婷国产精品久久蜜臀| 亚洲男人电影天堂| 久久久久久综合| 欧美日产在线观看| 成人妖精视频yjsp地址| 免费xxxx性欧美18vr| 亚洲裸体xxx| 久久久久久久综合色一本| 欧美日韩中文国产| 91一区二区在线| 国产成人亚洲综合a∨婷婷| 日韩在线一区二区| 亚洲免费观看高清| 中文字幕第一区第二区| 久久午夜色播影院免费高清| 中文在线资源观看网站视频免费不卡| 欧美日韩视频在线第一区| 成人精品国产免费网站| 狠狠色狠狠色综合系列| 日韩av在线播放中文字幕| 亚洲乱码国产乱码精品精的特点 | 精品一区二区三区视频| 亚洲成人av中文| 亚洲精品写真福利| 亚洲精品欧美在线| 最新国产の精品合集bt伙计| 久久久99精品免费观看| 日韩欧美第一区| 精品久久久久久久久久久久包黑料 | 亚洲超碰97人人做人人爱| 亚洲视频香蕉人妖| 亚洲欧洲一区二区三区| 亚洲丝袜美腿综合| 自拍偷拍亚洲欧美日韩| 亚洲天堂中文字幕| 亚洲精品免费在线播放| 亚洲天堂av老司机| 亚洲另类一区二区| 一区二区三区免费| 亚洲国产精品一区二区www在线| 一级日本不卡的影视| 亚洲精品免费播放| 亚洲国产欧美日韩另类综合| 亚洲图片欧美色图| 婷婷国产v国产偷v亚洲高清| 成人在线一区二区三区| 成人福利视频在线| 日本乱人伦aⅴ精品| 欧美精品久久久久久久久老牛影院| 欧美日韩在线播| 日韩一级大片在线| 久久久99免费| 亚洲精品成a人| 免费一级片91| 成人网在线免费视频| 91九色最新地址| 日韩精品一区二区三区中文不卡| 欧美不卡一区二区| 国产精品高潮呻吟| 亚洲国产wwwccc36天堂| 久99久精品视频免费观看| 国产精品18久久久久久久久久久久| 北条麻妃一区二区三区| 日本丶国产丶欧美色综合| 9191成人精品久久| 中文av一区二区| 日韩黄色一级片| 成人综合在线网站| 欧美男人的天堂一二区| 亚洲精品在线网站| 一区二区三区色| 国产一区二区导航在线播放| 色综合天天综合| 欧美成人精精品一区二区频| 亚洲欧美偷拍卡通变态| 美女性感视频久久| 91免费版pro下载短视频| 欧美mv日韩mv亚洲| 亚洲va国产va欧美va观看| 韩国在线一区二区| 欧美日韩午夜在线视频| 中文字幕欧美日本乱码一线二线 | 国产欧美视频一区二区三区| 亚洲午夜精品一区二区三区他趣|