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

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

?? webhtmleditordialog.txt.exclude

?? 小孔子全站管理系統網站內容管理。相當于一個文章發布系統一個樣
?? EXCLUDE
?? 第 1 頁 / 共 5 頁
字號:
TableWizard.prototype.SetCellProperties= function ()
{
	if (this.CellPropertiesSelectCell)
	{
		if (!this.CellPropertiesControl.Update())
		{
			return false; 
		} 
		this.PreviewViewTable_SelectCell=null; 
		this.SelectCellIndex=-1; 
	}
	return true; 
} ; 
TableWizard.prototype.InitTableProperties= function ()
{ 
	this.SetCellProperties(); 
	this.TablePropertiesControl.Initialize(this.TableToModify,this.Editor,this.ColorsArray); 
} ; 
TableWizard.prototype.SetSelectCellIs0= function ()
{
	if (this.TableToModify.rows.length>0)
	{
		if (this.TableToModify.rows[0].cells.length>0)
		{ 
			this.PreviewViewTable_SelectCell=this.TableToModify.rows[0].cells[0]; 
		}
	}
} ; 
TableWizard.prototype.InitDesigner= function ()
{ 
	this.SetCellProperties(); 
	this.SetSelectCellIs0(); 
	this.TableDesignControl.Initialize(this.TableToModify,this.PreviewViewTable_SelectCell, this.ThemePath); 
} ; 
TableWizard.prototype.InsertTable= function ()
{
	if (!this.SetCellProperties()){return; } 
	if (!this.TablePropertiesControl.UpdateTable()){return; }
	CloseDlg(this.TableToModify); 
} ;

function SpinBox(doc, id, themePath)
{ 
	this.Document = doc;
	this.ThemePath = themePath;
	this.Id=id; 
	this.TextBox = this.Document.getElementById(this.Id+"TextBox"); 
	this.IncBorderButton = this.Document.getElementById(this.Id+"IncBorderSize"); 
	this.DecBorderButton = this.Document.getElementById(this.Id+"DecBorderSize"); 
	this.CurrTextBoxValue=""; 
	this.TextBoxChangeOnClientClick=null; 
	this.iad= false; 
	this.InitializeEvent();
}  
SpinBox.prototype.InitializeEvent = function ()
{ 
	var obj = this;
	var col = this.TextBox;
	if(col)
	{
		col.onkeydown = function(){obj.OnTextBoxKeyDown(event!=null?event:e);};
		col.onkeyup = function(){obj.OnTextBoxKeyUp();};
	} 
	col = this.IncBorderButton;
	if(col)
	{
		col.onmouseover = function(){obj.ButtonOver(this);};
		col.onmouseout = function(){obj.ButtonOut(this);};
		col.onclick = function(){obj.ModifyBorderSize(true);};
		col.src = this.ThemePath + "/Images/Dialogs/plus2.gif";
	} 
	col = this.DecBorderButton;
	if(col)
	{
		col.onmouseover = function(){obj.ButtonOver(this);};
		col.onmouseout = function(){obj.ButtonOut(this);};
		col.onclick = function(){obj.ModifyBorderSize(false);};
		col.src = this.ThemePath + "/Images/Dialogs/minus2.gif";
	}
} ;
SpinBox.prototype.Initialize= function (size, width,Iad)
{ 
	this.CurrTextBoxValue=size; 
	this.TextBox.value=size; 
	if (width)
	{ 
		this.TextBox.style.width=width; 
		this.TextBox.width=width; 
	}
	if (Iad)
	{
		this.TextBox.oae=Iad; 
	}
} ; 
SpinBox.prototype.GetCurrValue= function ()
{
	return this.CurrTextBoxValue; 
} ;
SpinBox.prototype.SetSize= function (size)
{ 
	this.CurrTextBoxValue=size; 
	this.TextBox.value=size;
	this.CheckTextBoxChangeOnClientClick(); 
};
SpinBox.prototype.OnTextBoxKeyDown= function (ev)
{
	if (!ev)var ev=e; 
	ev.returnValue=this.CheckInputValue(ev);
} ;
SpinBox.prototype.OnTextBoxKeyUp= function (ev)
{
	if (!ev)var ev=e; 
	if (this.CheckInputValue(ev, true))
	{ 
		this.CurrTextBoxValue=this.GetTextBoxValue();
		this.CheckTextBoxChangeOnClientClick(); 
	}
	else
	{
		this.TextBox.value=this.CurrTextBoxValue; 
	}
} ; 
SpinBox.prototype.CheckInputValue= function (e, flag)
{
	try 
	{
		if (!flag)flag= false; 
		if (!e)e=window.event; 
		var inputCode=((060<=e.keyCode&&e.keyCode<=071)||(0140<=e.keyCode&&e.keyCode<=0151)||(015 == e.keyCode)||(8 == e.keyCode)||(056 == e.keyCode)); 
		if (!flag)
		{
		    inputCode |= ((043<=e.keyCode&&e.keyCode<=050)); 
		}
		return inputCode; 
	}
	catch (ex){return true; }
} ; 
SpinBox.prototype.GetTextBoxValue= function ()
{
	var size=-1; 
	if (null != this.TextBox)
	{
		size=parseInt(this.TextBox.value); 
		if (isNaN(size))
		{
		    size=-1; 
		}
	}
	return size; 
} ; 
SpinBox.prototype.CheckTextBoxChangeOnClientClick= function ()
{
	if (this.TextBoxChangeOnClientClick)
	{ 
		this.TextBoxChangeOnClientClick(); 
	}
};
SpinBox.prototype.ModifyBorderSize= function (Oaf)
{
	var size=this.CurrTextBoxValue; 
	var currValue=this.GetTextBoxValue(); 
	if (-1 != currValue&&size != currValue)
	{
		size=currValue; 
	}
	if (Oaf&&size<01750)
	{
	    size++; 
	}
	else if (!Oaf&&size>0)
	{
	    size--; 
	}
	this.CurrTextBoxValue=size; 
	this.TextBox.value=size;
	this.CheckTextBoxChangeOnClientClick(); 
} ; 
SpinBox.prototype.ButtonOver= function (elem)
{
	if (this.IsEnabled(elem))
	{
		elem.className="Over"; 
	}
} ; 
SpinBox.prototype.ButtonOut= function (elem)
{
	if (this.IsEnabled(elem))
	{
		elem.className=""; 
	}
} ; 
SpinBox.prototype.IsEnabled= function (elem)
{
	return (elem.className != "Disabled");
} ;

function AlignmentSelector(doc, id, imagePath, alignMode, dropDownMenu)
{ 
	this.Document = doc;
	this.IsIE=this.Document.all? true : false; 
	this.Id=id; 
	this.AlignmentCellLength = 3;
	this.ImagePath=imagePath; 
	this.AlignmentForHtmlElement=""; 
	this.AlignmentTableArray=null; 
	this.SelectAlignmentTableArrayItem=null; 
	this.SelectIndex=-1;
	this.MenuButtonImage=this.Document.getElementById(this.Id + "Menu_Button_Img");   
	this.MenuButton = this.Document.getElementById(this.Id + "Menu_Button"); 
	this.DropDownMenu=dropDownMenu; 
	this.DropDownMenu.AlignmentControl=this ; 
	this.SetMode(alignMode); 
	this.Initialize();
}  
AlignmentSelector.prototype.Initialize= function ()
{
	var obj = this;
	if(this.MenuButton)
	{
		this.MenuButton.onmouseover = function(){this.className="AlignmentMainButtonOver";}; 
		this.MenuButton.onmouseout = function(){this.className="AlignmentMainButton";};	
		this.MenuButton.onclick = function(){obj.Toggle();return false;};
		this.MenuButton.onfocus = function(){this.blur();};
	}
	this.CreateDropDownMenuInnerHTML();
}
AlignmentSelector.prototype.CreateDropDownMenuInnerHTML = function ()
{
	var table = this.Document.getElementById(this.Id + "Menu_Element_Table"); 
	if (!table)return; 
	var alignmentTableRowLength=table.rows.length; 
	for (var i=0; i<alignmentTableRowLength; i++)
	{
		table.deleteRow(0); 
	}	
	var alignmentTableRow=null; 
	var cellIndex=0; 
	var obj = this;
	for (var i=0; i<this.AlignmentTableArray.length; i++)
	{
		if (0 == i%this.AlignmentCellLength)
		{
			alignmentTableRow=table.insertRow(table.rows.length); 
			cellIndex=0; 
		}
		cellIndex++;
		var cell= alignmentTableRow.insertCell(alignmentTableRow.cells.length); 
		var button = this.Document.createElement("BUTTON");
		button.setAttribute("type","button"); 
		button.Index = i;
		button.onmouseover = function(){this.className = "Over";};
		button.onmouseout = function(){this.className = "";} 
		button.onclick = function(){obj.SelectAlignmentByIndex(this.Index)}
		var img = this.Document.createElement("IMG");
		img.align = "absMiddle";
		img.src = this.ImagePath + AlignmentSelectorImagesArray[i];
		button.appendChild(img);
		cell.appendChild(button);
	} 
} ; 
AlignmentSelector.prototype.SetMode= function (state)
{ 
	this.AlignmentForHtmlElement=state; 
	this.AlignmentTableArray=this.GetAlignmentTableArray(this.AlignmentForHtmlElement); 
	this.SelectAlignmentByIndex(this.SelectIndex);
} ;	 
AlignmentSelector.prototype.SelectAlignmentByIndex= function (index)
{						 
	if (index == this.SelectIndex)
	{ 
		this.SelectAlignmentTableArrayItem=""; 
		this.SetMenuButtonImagePath("x.gif");
	}
	else 
	{
		if (this.AlignmentTableArray&&0<=index&&index<this.AlignmentTableArray.length)
		{ 
			this.SelectAlignmentTableArrayItem=this.AlignmentTableArray[index]; 
			this.SetMenuButtonImagePath(AlignmentSelectorImagesArray[index]); 			
		}
	}
} ; 
var AlignmentSelectorForImageElementImagesArray=
[
	["",""],["none",""],["",""],
	["",""],["top",""],["",""],
	["left",""],["absmiddle",""],["right",""],
	["",""],["bottom",""],["",""],
	["",""],["",""],["",""]
]; 
var AlignmentSelectorForTDElementImagesArray=
[
	["",""],["none",""],["",""],
	["left","top"],["center","top"],["right","top"],
	["left","middle"],["center","middle"],["right","middle"],
	["left","bottom"],["center","bottom"],["right","bottom"],
	["",""],["",""],["",""]
]; 
var AlignmentSelectorForTableElementImagesArray=
[
	["",""],["none",""],["",""],
	["left",""],["center",""],["right",""],
	["",""],["",""],["",""],
	["",""],["",""],["",""],
	["",""],["",""],["",""]
]; 
var AlignmentSelectorForCaptionImagesArrayIE=
[
	["",""],["none",""],["",""],
	["left","top"],["center","top"],["right","top"],
	["",""],["",""],["",""],
	["left","bottom"],["center","bottom"],["right","bottom"],
	["",""],["",""],["",""]
]; 
var AlignmentSelectorForCaptionImagesArrayM=
[
	["",""],["none",""],["",""],
	["",""],["","top"],["",""],
	["",""],["",""],["",""],
	["",""],["","bottom"],["",""],
	["",""],["",""],["",""]
]; 
var AlignmentSelectorImagesArray=
[
	"x.gif","x.gif","x.gif",
	"AlignTopLeft.gif","AlignTopCenter.gif","AlignTopRight.gif",
	"AlignMiddleLeft.gif","AlignMiddleCenter.gif","AlignMiddleRight.gif",
	"AlignBottomLeft.gif","AlignBottomCenter.gif","AlignBottomRight.gif",
	"x.gif","x.gif","x.gif"
]; 
AlignmentSelector.prototype.GetAlignmentTableArray= function (state)
{
	switch (state.toUpperCase())
	{
		case "IMG":
			return AlignmentSelectorForImageElementImagesArray; 
		case "TABLE":
			return AlignmentSelectorForTableElementImagesArray; 
		case "TD":
			return AlignmentSelectorForTDElementImagesArray; 
		case "CAPTION":
			return (this.IsIE?AlignmentSelectorForCaptionImagesArrayIE:AlignmentSelectorForCaptionImagesArrayM); 
		default:
			return null; 
	}
} ; 
AlignmentSelector.prototype.SetAlignmentVisible= function (visible)
{ 
	this.SetVisible(this.AlignmentForHtmlElement,visible);
} ; 
AlignmentSelector.prototype.SetVisible= function (state,visible)
{
	var table=this.Document.getElementById(this.Id + "Menu_Element_Table"); 
	var count=0; 
	for (var i=0; i<table.rows.length; i++)
	{
		var flag= false; 
		for (var j=0; j<table.rows[i].cells.length; j++)
		{
			var cell=table.rows[i].cells[j]; 
			var flag2=visible&&this.CheckArrayItem(count++); 
			cell.style.visibility=flag2?"visible": "hidden"; 
			flag |= flag2;
		}
		if (null != this.Document.all)
		{
			table.rows[i].style.display=flag?"": "none";
		}
	}
} ; 
AlignmentSelector.prototype.CheckArrayItem= function (index)
{
	var flag= false; 
	if (this.AlignmentTableArray)
	{
		var item=this.AlignmentTableArray[index]; 
		flag=((null != item)&&("" != item[0]||"" != item[1])); 
	}
	return flag; 
} ; 
AlignmentSelector.prototype.O7i= function ()
{
	var index=-1; 
	if (this.AlignmentTableArray)
	{
		for (var i=0; i<this.AlignmentTableArray.length; i++)
		{
			if (this.CheckArrayItem(i))
			{
				index=i; 
				break; 
			}
		}
	}
	return index;
} ; 
AlignmentSelector.prototype.SetMenuButtonImagePath= function (fileName)
{ 
	this.MenuButtonImage.src=this.ImagePath+fileName; 
	if ("x.gif" == fileName)
	{ 
		this.MenuButtonImage.style.marginLeft="0px";
	}
	else 
	{ 
		this.MenuButtonImage.style.marginLeft="-2px";
	}	  
} ; 
AlignmentSelector.prototype.SetValue= function (align,vAlign)
{
	if ("" == align)
	{
		align="none"; 
	}
	if (!vAlign){vAlign=""; }
	if (this.AlignmentTableArray)
	{
		align=align.toUpperCase(); 
		vAlign=vAlign.toUpperCase(); 
		var index=-1; 
		for (var i=0; i<this.AlignmentTableArray.length; i++)
		{
			if (this.CheckArrayItem(i))
			{
				var item0=this.AlignmentTableArray[i][0].toUpperCase(); 
				var item1=this.AlignmentTableArray[i][1].toUpperCase(); 
				if (-1 == index)
				{
					index=i; 
				}
				if ((align == item0||align == item1)&&(vAlign == item0||vAlign == item1))
				{
					this.SelectAlignmentByIndex(i); 
					return;
				}
			}
		}
		this.SelectAlignmentByIndex(index);
	}
} ; 
AlignmentSelector.prototype.GetSelectItemAlign= function ()
{
	var value=(this.SelectAlignmentTableArrayItem?this.SelectAlignmentTableArrayItem[0]: ""); 
	if ("none" == value)
	{
		value=""; 
	}
	return value; 
} ; 
AlignmentSelector.prototype.GetSelectItemValign= function ()
{
	var value=(this.SelectAlignmentTableArrayItem?this.SelectAlignmentTableArrayItem[1]: "");
	if ("none" == value)
	{
		value=""; 
	}
	return value;
} ; 
AlignmentSelector.prototype.Toggle= function ()
{
	if (null != this.DropDownMenu)
	{ 
		this.DropDownMenu.Toggle(); 
		if (window.event)
		{
			window.event.cancelBubble= true; 
		}
	}
} ; 
AlignmentSelector.prototype.SetDisabled= function (flag)
{
	if (null != this.DropDownMenu)
	{ 
		this.DropDownMenu.SetDisabled(flag); 
	}
} ;

 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91在线精品秘密一区二区| 在线播放欧美女士性生活| 精品国产免费人成电影在线观看四季 | 粉嫩蜜臀av国产精品网站| 日韩女同互慰一区二区| 日韩av电影天堂| 6080yy午夜一二三区久久| 亚洲综合丝袜美腿| 色老头久久综合| 亚洲男人的天堂在线观看| eeuss国产一区二区三区| 国产欧美日韩久久| 成人在线综合网| 国产精品女主播在线观看| 国产成人av一区| 欧美经典一区二区三区| 国产99久久久国产精品潘金| 国产欧美一二三区| 风间由美性色一区二区三区| 亚洲国产精品激情在线观看| 粉嫩一区二区三区在线看| 国产精品久久久爽爽爽麻豆色哟哟| 国产999精品久久久久久| 欧美高清在线视频| 成人高清视频免费观看| 成人欧美一区二区三区| 色婷婷综合激情| 亚洲国产一区视频| 欧美日韩一区二区欧美激情| 午夜精品久久久久久久99水蜜桃| 91精品国产手机| 精品亚洲国产成人av制服丝袜| 久久蜜桃香蕉精品一区二区三区| 国产98色在线|日韩| 亚洲人成精品久久久久| 欧美无乱码久久久免费午夜一区 | 一区二区三区蜜桃| 欧美日韩高清一区二区不卡| 日韩国产欧美在线视频| 欧美成人福利视频| 国产成人aaaa| 亚洲男同性恋视频| 9191国产精品| 国产美女精品人人做人人爽| 国产精品欧美精品| 欧美日韩国产在线播放网站| 免费成人在线影院| 中文在线一区二区| 在线观看免费视频综合| 久久超碰97人人做人人爱| 国产丝袜欧美中文另类| 日本大香伊一区二区三区| 日韩av在线免费观看不卡| 国产亚洲综合在线| 欧美综合在线视频| 精品一区二区国语对白| 亚洲欧美在线视频观看| 在线播放日韩导航| 成+人+亚洲+综合天堂| 午夜精品视频一区| 国产亚洲精品福利| 欧洲一区二区av| 国产一区不卡在线| 一个色妞综合视频在线观看| 亚洲精品一区二区三区在线观看 | 欧美午夜在线一二页| 美女精品自拍一二三四| 国产精品成人一区二区三区夜夜夜| 欧美午夜片在线观看| 国产在线视频精品一区| 亚洲精品一卡二卡| ww久久中文字幕| 91官网在线观看| 国内精品免费在线观看| 亚洲综合在线视频| 国产日韩在线不卡| 7777女厕盗摄久久久| av在线综合网| 麻豆91免费看| 亚洲精品国产一区二区三区四区在线| 日韩一区二区在线免费观看| 99久久er热在这里只有精品15 | 99久久伊人精品| 日本人妖一区二区| 亚洲女爱视频在线| 国产人久久人人人人爽| 91精品欧美综合在线观看最新| caoporen国产精品视频| 另类中文字幕网| 亚洲五码中文字幕| 国产精品国产三级国产aⅴ中文 | 欧美岛国在线观看| 在线观看91视频| 不卡一卡二卡三乱码免费网站| 美女mm1313爽爽久久久蜜臀| 亚洲精品日韩一| 国产午夜精品一区二区三区四区| 欧美精品在欧美一区二区少妇| av一本久道久久综合久久鬼色| 精品一区二区三区免费毛片爱| 午夜欧美2019年伦理| 亚洲欧美日韩久久| 中文av一区特黄| 久久久亚洲午夜电影| 欧美一区二区精品在线| 精品视频免费看| 91丝袜国产在线播放| 国产精品资源网站| 久久av中文字幕片| 秋霞成人午夜伦在线观看| 一区二区久久久久| 自拍偷拍国产精品| 国产精品黄色在线观看| 久久九九全国免费| 久久午夜电影网| 日韩精品一区二区三区老鸭窝| 欧美午夜精品电影| 欧美在线制服丝袜| 在线观看日韩国产| 在线中文字幕一区| 色婷婷激情综合| 91免费看`日韩一区二区| 成人手机电影网| 高清国产一区二区三区| 盗摄精品av一区二区三区| 国产一区二区电影| 国产福利视频一区二区三区| 国产在线麻豆精品观看| 国产在线精品一区在线观看麻豆| 麻豆91精品视频| 久久不见久久见免费视频1| 蓝色福利精品导航| 国内精品在线播放| 国产一区91精品张津瑜| 国产成人av福利| 国产白丝精品91爽爽久久| 粉嫩绯色av一区二区在线观看| 懂色av中文字幕一区二区三区| 国产伦理精品不卡| 国产成人啪午夜精品网站男同| 国产经典欧美精品| 丰满少妇久久久久久久| 不卡欧美aaaaa| 91在线视频18| 色综合久久久久久久久| 欧美亚洲自拍偷拍| 欧美放荡的少妇| 日韩情涩欧美日韩视频| 日韩免费成人网| 久久久久久久久岛国免费| 久久久午夜电影| 国产精品第13页| 夜夜爽夜夜爽精品视频| 日韩黄色一级片| 久久电影网站中文字幕| 国产风韵犹存在线视精品| gogogo免费视频观看亚洲一| 91久久人澡人人添人人爽欧美| 欧美精品日日鲁夜夜添| 日韩欧美中文字幕公布| 国产午夜精品福利| 亚洲日本在线观看| 亚洲国产综合91精品麻豆| 麻豆91在线看| 成人自拍视频在线观看| 在线视频一区二区三| 欧美欧美欧美欧美| 久久一夜天堂av一区二区三区| 中文字幕成人av| 亚洲精品国产无天堂网2021| 午夜精品久久久久久久99水蜜桃 | 狠狠网亚洲精品| 99国产麻豆精品| 欧美精品久久99| 久久久无码精品亚洲日韩按摩| 自拍偷拍亚洲综合| 男人的天堂久久精品| 国产**成人网毛片九色 | 国产精品国产自产拍高清av| 一区二区三区精品视频| 久久精品99国产精品| 成人h版在线观看| 欧美日韩免费视频| 国产日韩成人精品| 亚洲一区二区三区三| 国产一区二区三区四区五区入口| 99久久久国产精品免费蜜臀| 欧美丰满少妇xxxbbb| 中文字幕av不卡| 无吗不卡中文字幕| 国产91精品欧美| 在线91免费看| 中文字幕一区二区在线播放| 日韩高清电影一区| av不卡免费在线观看| 欧美一区二区视频在线观看2022| 中文一区二区在线观看| 日韩精品色哟哟| 91美女在线观看| 久久久高清一区二区三区|