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

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

?? webhtmleditordialog.txt.exclude

?? 小孔子全站管理系統網站內容管理。相當于一個文章發布系統一個樣
?? EXCLUDE
?? 第 1 頁 / 共 5 頁
字號:
	}
	else 
	{ 
		this.TableToModify.removeAttribute("cellPadding", false); 
	}
	var bgColor=this.TableBgColorPicker.ColorPickerSelectColor; 
	if (bgColor)
	{ 
		this.TableToModify.bgColor=this.TableBgColorPicker.ColorPickerSelectColor; 
	}
	else 
	{ 
		this.TableToModify.removeAttribute("bgColor", false); 
	} 
	this.TableBorderControl.oam(); 
	
	if (this.TableBgImageDialogCaller&&this.TableToModify)
	{
		var imagePath=this.TableBgImageDialogCaller.GetValue(); 
		if (imagePath == "")
		{ 
			this.TableToModify.removeAttribute("background", false); 
		}
		else 
		{ 
			this.TableToModify.setAttribute("background",imagePath); 
		}
	}
	return true;
} ; 
TablePropertiesControl.prototype.GetStartString= function (name)
{
	var nameArray=name.split("-"); 
	name=nameArray[0]; 
	for (var i=1; i<nameArray.length; i++)
	{
		name+=nameArray[i].substr(0,1).toUpperCase()+nameArray[i].substr(1); 
	}
	return name;
} ; 
TablePropertiesControl.prototype.ValidateUnit= function (value)
{
	if (!e)
	{
	    var e=window.event; 
	}
	var match=value.match(/(1|2|3|4|5|6|7|8|9)d*%?$/ig); 
	e.returnValue=match; 
	return match; 
} ;

function CellPropertiesControl(doc, Id, cellAlignmentSelector, cellBackgroundColorPicker, bgImageDialogCaller)
{ 
	this.Document = doc;
	this.Id = Id; 
	this.CellAlignmentSelector = cellAlignmentSelector; 
	this.CellBackgroundColorPicker = cellBackgroundColorPicker; 
	this.BgImageDialogCaller = bgImageDialogCaller;
	this.CellHeight = this.Document.getElementById(this.Id+"CellHeight"); 
	this.CellWidth = this.Document.getElementById(this.Id+"CellWidth");
	this.CellWidthValid=new NumValidControl(this.Document, this.CellWidth.id, "DIMENSION", LR["InvalidCellWidth"]); 
	this.CellHeightValid=new NumValidControl(this.Document, this.CellHeight.id, "DIMENSION", LR["InvalidCellHeight"]); 
	this.CellWrap = this.Document.getElementById(this.Id+"CellWrap"); 
	this.CellId = this.Document.getElementById(this.Id+"CellId");  
	this.CellWrap = this.Document.getElementById(this.Id+"CellWrap");  
	this.Editor=null; 
	this.IsInitialize= false; 
}						  
CellPropertiesControl.prototype.Initialize= function (selectCell, editor,ColorsArray)
{
	if (!this.IsInitialize)
	{ 
		this.Editor=editor; 
		this.BgImageDialogCaller.Initialize(this.Editor); 
		if (ColorsArray)
		{
		    this.CellBackgroundColorPicker.SetColorsArray(ColorsArray); 
		}
		this.IsInitialize= true; 
	} 
	this.SetCellProperty(selectCell); 
} ; 
CellPropertiesControl.prototype.SetCellProperty= function (cellToModify)
{ 
	this.SelectCell=cellToModify; 
	if (this.SelectCell.style.width == "")
	{ 
		this.CellWidth.value=this.SelectCell.width; 
	}
	else 
	{ 
		this.CellWidth.value=this.SelectCell.style.width; 
	}
	if (this.SelectCell.style.height == "")
	{ 
		this.CellHeight.value=this.SelectCell.height; 
	}
	else 
	{ 
		this.CellHeight.value=this.SelectCell.style.height; 
	} 
	this.CellId.value=this.SelectCell.getAttribute("id"); 
	this.CellAlignmentSelector.SetValue(this.SelectCell.align,this.SelectCell.vAlign);
	this.CellWrap.checked=this.SelectCell.noWrap;
	this.CellBackgroundColorPicker.SelectColor(this.SelectCell.bgColor); 
	if (this.BgImageDialogCaller&&this.SelectCell)
	{
		var imagePath=this.SelectCell.getAttribute("background"); 
		if (!imagePath)
		{
		    imagePath=""; 
		}
		this.BgImageDialogCaller.SetCallBackValue(imagePath); 
	}
} ;
CellPropertiesControl.prototype.Update= function ()
{
	if (!this.CellWidthValid.Valid())
	{
		return false; 
	}
	var widthValue=this.CellWidthValid.RexBlank(); 
	if (widthValue == "")
	{ 
		this.SelectCell.removeAttribute("width", false); 
		if (this.SelectCell.style.removeAttribute)
		{ 
			this.SelectCell.style.removeAttribute("width", false); 
		}
		else 
		{ 
			this.SelectCell.style.width=null; 
		}
	}
	else 
	{
		if (this.SelectCell.style.width == ""&&widthValue != 0)
		{ 
			this.SelectCell.width=widthValue; 
		}
		else 
		{ 
			this.SelectCell.removeAttribute("width", false); 
			this.SelectCell.style.width=widthValue; 
		}
	}
	if (!this.CellHeightValid.Valid())
	{
		return false; 
	}
	var heightValue=this.CellHeightValid.RexBlank(); 
	if (heightValue == "")
	{ 
		this.SelectCell.removeAttribute("height", false); 
		if (this.SelectCell.style.removeAttribute)
		{ 
			this.SelectCell.style.removeAttribute("height", false); 
		}
		else
		{ 
			this.SelectCell.style.height=null; 
		}
	}
	else 
	{
		if (this.SelectCell.style.height == ""&&heightValue != 0)
		{ 
			this.SelectCell.height=heightValue; 
		}
		else 
		{ 
			this.SelectCell.removeAttribute("height", false); 
			this.SelectCell.style.height=heightValue;
		}
	}
	if (this.CellId.value)
	{ 
		this.SelectCell.setAttribute("id",this.CellId.value); 
	}
	else 
	{
		this.SelectCell.removeAttribute("id", false);
	}
	var align=this.CellAlignmentSelector.GetSelectItemAlign(); 
	if (align)
	{ 
		this.SelectCell.align=align; 
	}
	else 
	{ 
		this.SelectCell.removeAttribute("align", false); 
	}
	var vAlign=this.CellAlignmentSelector.GetSelectItemValign(); 
	if (vAlign)
	{ 
		this.SelectCell.vAlign=vAlign; 
	}
	else 
	{ 
		this.SelectCell.removeAttribute("vAlign", false); 
	} 
	this.SelectCell.noWrap=this.CellWrap.checked;
	var bgColor=this.CellBackgroundColorPicker.ColorPickerSelectColor;    
	if (bgColor)
	{ 
		this.SelectCell.bgColor=bgColor;
	}
	else 
	{ 
		this.SelectCell.removeAttribute("bgColor", false);
	}  	
	if (this.BgImageDialogCaller&&this.SelectCell)
	{
		var imagePath=this.BgImageDialogCaller.GetValue(); 
		if (imagePath == "")
		{ 
			this.SelectCell.removeAttribute("background", false); 
		}
		else 
		{ 
			this.SelectCell.setAttribute("background",imagePath);
		}
	}
	return true; 
} ; 
CellPropertiesControl.prototype.GetStartString= function (name)
{
	var nameArray=name.split("-"); 
	name=nameArray[0]; 
	for (var i=1; i<nameArray.length; i++)
	{
		name+=nameArray[i].substr(0,1).toUpperCase()+nameArray[i].substr(1);
	}
	return name; 
} ;


function ImageDialogCaller(doc, id, themePath, command, currentCulture)
{ 
	this.Document = doc;
	this.Id = id; 
	this.ThemePath = themePath;
	this.ImageCommand = command;
	this.ResultTextBox = this.Document.getElementById(this.Id+"ResultTextBox"); 
	this.DialogOpenerButton = this.Document.getElementById(this.Id+"DialogOpenerButton"); 
	this.Editor = null; 
	this.InitializeEvent();
	this.CurrentCulture = currentCulture;
}  
ImageDialogCaller.prototype.InitializeEvent= function ()
{ 
	var obj = this;
	if(this.DialogOpenerButton)
	{
		this.DialogOpenerButton.onclick = function(){return obj.CallImageDialog();};
		this.onfocus = function(){this.blur();};
	}
} ; 
ImageDialogCaller.prototype.Initialize= function (editor, resultTextBoxSize)
{ 
	this.Editor = editor; 
	if (resultTextBoxSize)
	{ 
		this.ResultTextBox.size=resultTextBoxSize; 
	}
} ; 
ImageDialogCaller.prototype.SetCallBackValue= function (imagePath)
{ 
	if(!imagePath || imagePath=="undefined")
	{
	    imagePath = "";
	}
	this.ResultTextBox.value=this.Editor.FiltersManager.GetHtmlContent(imagePath); 
} ; 
ImageDialogCaller.prototype.GetValue = function ()
{
	return this.ResultTextBox.value;
} ; 
ImageDialogCaller.prototype.CallImageDialog= function ()
{
	var ParamObject= new Object();
	ParamObject.ImageCaller = this;	
	var arg = GetDialogArguments();
	var Argument = new Object();
	Argument.Command = arg.Command;
	Argument.Editor = arg.Editor;
	this.Editor.ShowDialog((this.ThemePath + "IHttpHandler.ashx?Command=" + this.ImageCommand + "&CurrentCulture=" + this.CurrentCulture),Argument,10,10,this.CallBackFunction,ParamObject);  
	return false; 
} ;

ImageDialogCaller.prototype.CallBackFunction= function (returnValue, paramObject)
{
    if (!returnValue|| (returnValue.tagName && returnValue.tagName.toUpperCase() != "IMG") || returnValue.src=="")
		{
		    return;
		}
		paramObject.ImageCaller.SetCallBackValue(returnValue.src);
		window.focus();
}


function ColorPicker(id, doc, imagePath, dropDownMenuControl, colorsArray)
{ 
	this.Document = doc;
	this.IsIE=this.Document.all? true : false; 
	this.Id = id; 
	this.ImagePath = imagePath; 
	this.DropDownMenu = dropDownMenuControl;
	this.MenuButton = this.Document.getElementById(this.Id + "Menu_Button"); 
	this.MenuButtonSpan = this.Document.getElementById(this.Id + "Menu_Button_Span"); 
	this.ColorsArray=colorsArray; 
	this.ColorTableCellLength=6;
	this.ShowAddCustomColor= true; 
	this.ShowAddHexColor= true; 
	if (null != this.DropDownMenu)
	{ 
		this.CreateDropDownMenuInnerHTML(); 
	} 
	this.ColorPickerSelectColor=""; 
	this.SelectColor(""); 
	this.OnClientClick=null;
	this.Initialize();
}
ColorPicker.prototype.Initialize= function ()
{
	var obj = this;
	if(this.MenuButton)
	{
		this.MenuButton.onmouseover = function(){this.className="ColorPickerMainButtonOver";}; 
		this.MenuButton.onmouseout = function(){this.className="ColorPickerMainButton";};	
		this.MenuButton.onclick = function(){obj.Toggle();return false;};
		this.MenuButton.onfocus = function(){this.blur();};
	}
}
ColorPicker.prototype.SetColorsArray= function (colorsArray)
{ 
	this.ColorsArray = colorsArray; 
	this.CreateDropDownMenuInnerHTML(); 
};
ColorPicker.prototype.SetDisabled= function (flag)
{
	if (null != this.DropDownMenu)
	{ 
		this.DropDownMenu.SetDisabled(flag); 
	}
} ; 
ColorPicker.prototype.Toggle= function ()
{
	if (null != this.DropDownMenu)
	{ 
		this.DropDownMenu.Toggle(); 
	}
} ; 
ColorPicker.prototype.SelectColor = function (color,hide)
{ 
	this.ColorPickerSelectColor=color; 
	if (null == hide)hide= true; 
	if (hide&&null != this.DropDownMenu&&this.DropDownMenu.IsVisible())
	{ 
		this.DropDownMenu.SetVisible( false); 
	} 
	this.SetSpanStyle(); 
} ; 
ColorPicker.prototype.SetSpanStyle= function ()
{
	if (null != this.DropDownMenu&&null != this.MenuButtonSpan)
	{
		if ("" == this.ColorPickerSelectColor)
		{		  
			this.MenuButtonSpan.style.background=this.ColorPickerSelectColor; 
			this.MenuButtonSpan.style.backgroundImage="url("+this.ImagePath+"x.gif)"; 
			this.MenuButtonSpan.style.backgroundPosition="center"; 
			this.MenuButtonSpan.style.backgroundRepeat="no-repeat";
		}
		else 
		{ 
			this.MenuButtonSpan.style.backgroundImage=""; 
			this.MenuButtonSpan.style.background=this.ColorPickerSelectColor; 
		}
		if (this.OnClientClick)
		{ 
			this.OnClientClick(); 
		}
	}
} ;
ColorPicker.prototype.CreateDropDownMenuInnerHTML = function ()
{
	var table = this.Document.getElementById(this.Id + "Color_Table"); 
	if (!table)return; 
	var colorTableRowLength=table.rows.length; 
	for (var i=0; i<colorTableRowLength; i++)
	{
		table.deleteRow(0); 
	}
	var colorTableRow=null; 
	var cellIndex=0; 		
	for (var i=0; i<this.ColorsArray.length; i++)
	{
		if (0 == i%this.ColorTableCellLength)
		{
			colorTableRow=table.insertRow(table.rows.length); 
			cellIndex=0; 
		}
		cellIndex++; 
		var bgColor=this.ColorsArray[i]; 
		this.CreateColorPickerTableCell(colorTableRow,bgColor); 
	}  
	var residualCellIndex=this.ColorTableCellLength-cellIndex-1; 
	if (residualCellIndex>0)
	{
		for (var i=0; i<=residualCellIndex; i++)
		{
			var cell=colorTableRow.insertCell(colorTableRow.cells.length); 
			cell.innerHTML="&nbsp;&nbsp;"; 
		}
	}		 
	if (this.ShowAddCustomColor)
	{
		if (this.IsIE)
		{
			this.CreateAddCustomColorCell_I(table); 
		}
		else
		{
			this.CreateAddCustomColorCell(table, LR["AddCustomColor"]); 
		}
	}
	if (this.IsIE&&this.ShowAddHexColor)
	{ 
		this.CreateAddCustomColorCell(table, LR["AddHexColor"]); 
	}
	if (this.IsIE)
	{
	    this.DropDownMenu.SetDropDownMenuContent(table); 
	}

} ; 
ColorPicker.prototype.CreateAddCustomColorCell_I = function (table)
{
	var html="<span class='Label'>"+LR["AddCustomColor"]+"</span>"+"<object id='"+this.Id+"dlgHelper' CLASSID='clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b' width='0px' height='0px'></object>"; 
	var cell = this.CreateColorPickerCustomTableCell(table, html);
	var obj = this;
	cell.onclick = function(){obj.OnAddCustomColorIE();}; 
} ; 
ColorPicker.prototype.CreateAddCustomColorCell= function (table,label)
{ 
	var html="<span class='Label'>"+label+"</span>"; 
	var cell = this.CreateColorPickerCustomTableCell(table, html); 
	var obj = this;
	cell.onclick = function(){obj.OnAddHexColor();};
} ; 
ColorPicker.prototype.CreateColorPickerCustomTableCell= function (table, html)
{
	var row=table.insertRow(table.rows.length); 
	var cell=row.insertCell(row.cells.length); 
	cell.colSpan=this.ColorTableCellLength; 
	cell.noWrap= true; 	 
	cell.onmouseover = function(){this.className = "Over";};
	cell.onmouseout = function(){this.className = "";} 
	cell.innerHTML=html; 
	return cell;
} ; 
ColorPicker.prototype.OnAddCustomColorIE= function ()
{
	var obj = this.Document.getElementById(this.Id + "dlgHelper"); 
	if (!obj)return; 
	var color=obj.ChooseColorDlg(); 
	color=this.FormatColor(color); 
	this.AddCustomColorCell(color); 
} ; 
ColorPicker.prototype.CheckColor= function (color)
{
	if (null == color)return ""; 
	if (color.charAt(0) != "#")
	{
		color="#"+color; 
	}
	reg=new RegExp("#[0-9a-fA-F]{6}","gi"); 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜臀精品一区二区三区在线观看| 日韩视频免费直播| 不卡一区在线观看| av资源网一区| 91在线视频网址| 成人午夜看片网址| 色婷婷综合久久久中文一区二区 | a4yy欧美一区二区三区| 在线观看国产91| 久久久不卡网国产精品二区| 1000部国产精品成人观看| 亚洲免费高清视频在线| 图片区小说区国产精品视频| 国产一区二区三区高清播放| 91欧美一区二区| 久久这里只有精品视频网| 一区二区三区在线观看网站| 日韩成人午夜电影| 色综合亚洲欧洲| 久久精品一区二区三区四区| 亚洲综合免费观看高清完整版 | 99久久久无码国产精品| 精品99久久久久久| 亚洲国产日韩在线一区模特| 成人午夜激情影院| 久久久久综合网| 免费在线观看视频一区| 在线免费av一区| 中文字幕日本乱码精品影院| 另类综合日韩欧美亚洲| 欧美吻胸吃奶大尺度电影 | 精品一二线国产| 精品少妇一区二区三区视频免付费 | 777欧美精品| 亚洲18色成人| 欧美日韩精品一区二区三区蜜桃| 亚洲欧美在线观看| 一本大道综合伊人精品热热 | 欧美亚洲国产一区二区三区 | 成人av资源在线观看| 国产精品初高中害羞小美女文| 丰满白嫩尤物一区二区| 欧美激情一区在线| 色偷偷成人一区二区三区91| 亚洲国产精品影院| 日韩免费视频一区二区| 久久精品国产久精国产| 久久久无码精品亚洲日韩按摩| 国产激情一区二区三区桃花岛亚洲| 久久久久久久综合色一本| 99精品视频一区| 日韩国产在线观看| 91麻豆精品国产无毒不卡在线观看| 日本视频中文字幕一区二区三区| 337p粉嫩大胆色噜噜噜噜亚洲| 不卡一区中文字幕| 蜜臂av日日欢夜夜爽一区| 国产日本一区二区| 欧美日韩aaaaa| av一区二区三区| 国内欧美视频一区二区| 亚洲自拍偷拍av| 国产三区在线成人av| 欧美男女性生活在线直播观看| 国产风韵犹存在线视精品| 五月激情综合色| 一片黄亚洲嫩模| 1区2区3区国产精品| 欧美日韩国产综合久久| 99精品一区二区| 国产成人自拍高清视频在线免费播放| 亚洲免费成人av| 国产欧美日韩麻豆91| 欧美mv日韩mv亚洲| 欧美va亚洲va香蕉在线| 精品国产91久久久久久久妲己| 欧美性大战xxxxx久久久| 在线免费观看一区| 欧美三级在线播放| 欧美视频一二三区| 欧美精品丝袜久久久中文字幕| 欧美亚洲精品一区| 欧美日本在线观看| 7777精品久久久大香线蕉| 欧美四级电影在线观看| 欧美日韩一区二区三区四区五区| 欧美午夜理伦三级在线观看| 欧美久久婷婷综合色| 日韩欧美一区二区久久婷婷| 精品国产一区二区三区久久影院| 欧美电影免费提供在线观看| 久久久久久电影| 亚洲欧美日韩国产综合在线| 婷婷六月综合亚洲| 狠狠狠色丁香婷婷综合激情| eeuss鲁片一区二区三区在线看| 一本色道久久加勒比精品 | 一区二区三区日韩欧美| 亚洲国产va精品久久久不卡综合| 青青草成人在线观看| 不卡视频免费播放| 欧美精品电影在线播放| 久久九九久精品国产免费直播| 欧美国产精品劲爆| 免费在线观看视频一区| 在线看日韩精品电影| 久久久蜜桃精品| 日韩激情中文字幕| 99re成人精品视频| 久久久亚洲精品一区二区三区 | 欧美色男人天堂| 国产日韩欧美综合在线| 蜜桃久久久久久| 欧美日本一道本| 亚洲国产欧美在线| 91在线观看地址| 国产日产欧美精品一区二区三区| 日韩成人一级大片| 欧美日韩小视频| 亚洲精品水蜜桃| 9i在线看片成人免费| 国产三级精品在线| 国产成人精品免费一区二区| 久久免费偷拍视频| 国产不卡在线视频| 国产精品美女久久久久av爽李琼| 国产呦萝稀缺另类资源| 久久久久久久综合| 不卡高清视频专区| 亚洲男人的天堂在线观看| 成人av手机在线观看| 国产免费成人在线视频| 成人永久免费视频| 亚洲欧美综合在线精品| 在线精品亚洲一区二区不卡| 亚洲电影中文字幕在线观看| 欧美一区二区国产| 大胆亚洲人体视频| 亚洲黄色小视频| 日韩精品一区二区三区在线播放| 狠狠色丁香久久婷婷综合丁香| 久久精品一区二区三区不卡牛牛| 91丨九色丨黑人外教| 天天色图综合网| 欧美国产一区视频在线观看| 在线欧美日韩国产| 国内不卡的二区三区中文字幕| 国产精品成人一区二区三区夜夜夜 | 欧美在线视频不卡| 国产麻豆视频精品| 亚洲高清三级视频| 国产精品欧美久久久久一区二区| 在线免费观看日韩欧美| 成人伦理片在线| 麻豆精品一区二区| 一级女性全黄久久生活片免费| 精品99一区二区三区| 欧美另类z0zxhd电影| 97久久超碰国产精品电影| 国产精品一区二区三区乱码| 亚洲高清三级视频| 亚洲亚洲人成综合网络| 亚洲欧美怡红院| 国产精品二区一区二区aⅴ污介绍| 久久久久久久久久久电影| 欧美日本在线观看| 精品视频在线免费观看| 欧美成人性战久久| 日韩欧美精品三级| 精品国产91九色蝌蚪| 国产日韩v精品一区二区| 久久这里只有精品6| 国产亚洲成aⅴ人片在线观看| 欧美电影免费观看高清完整版在| 91精品午夜视频| 日韩一区二区三区观看| 91精品国产色综合久久不卡蜜臀 | 午夜精品视频一区| 蜜臀91精品一区二区三区| 日本欧美一区二区在线观看| 日韩电影网1区2区| 狠狠色2019综合网| 色一情一伦一子一伦一区| 欧美在线不卡视频| 日韩免费视频线观看| 亚洲国产精品成人综合| 国产精品日韩成人| 亚洲成av人综合在线观看| 久久成人18免费观看| 成人av电影免费在线播放| 在线中文字幕不卡| 精品国产一区二区三区不卡 | 色综合亚洲欧洲| 精品日韩成人av| 亚洲综合成人在线| 不卡的av电影| 欧美一级二级在线观看| 亚洲综合区在线| 成人晚上爱看视频| 精品99999|