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

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

?? fckcontextmenu.js

?? 如果遇到MD5加密文件
?? JS
字號:
?/* * FCKeditor - The text editor for internet
 * Copyright (C) 2003-2004 Frederico Caldeira Knabben
 * 
 * Licensed under the terms of the GNU Lesser General Public License:
 * 		http://www.opensource.org/licenses/lgpl-license.php
 * 
 * For further information visit:
 * 		http://www.fckeditor.net/
 * 
 * File Name: fckcontextmenu.js
 * 	Defines the FCKContextMenu object that is responsible for all
 * 	Context Menu operations.
 * 
 * Version:  2.0 RC3
 * Modified: 2005-02-16 20:34:58
 * 
 * File Authors:
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net) */
var FCKContextMenu = new Object() ;

// This property is internally used to indicate that the context menu has been created.
FCKContextMenu._IsLoaded = false ;

// This method creates the context menu inside a DIV tag. Take a look at the end of this file for a sample output.
FCKContextMenu.Reload = function()
{
	// Create the Main DIV that holds the Context Menu.
	this._Div = this._Document.createElement( 'DIV' ) ;
	this._Div.className			= 'CM_ContextMenu' ;
	this._Div.style.position	= 'absolute' ;
	this._Div.style.visibility	= 'hidden' ;
	this._Document.body.appendChild( this._Div );

	// Create the main table for the menu items.
	var oTable = this._Document.createElement( 'TABLE' ) ;
	oTable.cellSpacing = 0 ;
	oTable.cellPadding = 0 ;
	oTable.border = 0 ;
	this._Div.appendChild( oTable ) ;

	// Load all configured groups.
	this.Groups = new Object() ;
	
	for ( var i = 0 ; i < FCKConfig.ContextMenu.length ; i++ )
	{
		var sGroup = FCKConfig.ContextMenu[i] ;
		this.Groups[ sGroup ] = this._GetGroup( sGroup ) ;
		this.Groups[ sGroup ].CreateTableRows( oTable ) ;
	}

	this._IsLoaded = true ;
}

FCKContextMenu._GetGroup = function( groupName )
{
	var oGroup ;

	switch ( groupName )
	{
		case 'Generic' :
			// Generic items that are always available.
			oGroup = new FCKContextMenuGroup() ;
			with ( oGroup )
			{
				Add( new FCKContextMenuItem( this, 'Cut'	, FCKLang.Cut	, true ) ) ;
				Add( new FCKContextMenuItem( this, 'Copy'	, FCKLang.Copy	, true ) ) ;
				Add( new FCKContextMenuItem( this, 'Paste'	, FCKLang.Paste	, true ) ) ;
			}

			break ;

		case 'Link' :
			oGroup = new FCKContextMenuGroup() ;
			with ( oGroup )
			{
				Add( new FCKContextMenuSeparator() ) ;
				Add( new FCKContextMenuItem( this, 'Link'	, FCKLang.EditLink	, true ) ) ;
				Add( new FCKContextMenuItem( this, 'Unlink'	, FCKLang.RemoveLink, true ) ) ;
			}

			break ;

		case 'TableCell' :
			oGroup = new FCKContextMenuGroup() ;
			with ( oGroup )
			{
				Add( new FCKContextMenuSeparator() ) ;
				Add( new FCKContextMenuItem( this, 'TableInsertRow'		, FCKLang.InsertRow, true ) ) ;
				Add( new FCKContextMenuItem( this, 'TableDeleteRows'	, FCKLang.DeleteRows, true ) ) ;
				Add( new FCKContextMenuSeparator() ) ;
				Add( new FCKContextMenuItem( this, 'TableInsertColumn'	, FCKLang.InsertColumn, true ) ) ;
				Add( new FCKContextMenuItem( this, 'TableDeleteColumns'	, FCKLang.DeleteColumns, true ) ) ;
				Add( new FCKContextMenuSeparator() ) ;
				Add( new FCKContextMenuItem( this, 'TableInsertCell'	, FCKLang.InsertCell, true ) ) ;
				Add( new FCKContextMenuItem( this, 'TableDeleteCells'	, FCKLang.DeleteCells, true ) ) ;
				Add( new FCKContextMenuItem( this, 'TableMergeCells'	, FCKLang.MergeCells, true ) ) ;
				Add( new FCKContextMenuItem( this, 'TableSplitCell'		, FCKLang.SplitCell, true ) ) ;
				Add( new FCKContextMenuSeparator() ) ;
				Add( new FCKContextMenuItem( this, 'TableCellProp'		, FCKLang.CellProperties, true ) ) ;
				Add( new FCKContextMenuItem( this, 'TableProp'			, FCKLang.TableProperties, true ) ) ;
			}

			break ;

		case 'Table' :
			return new FCKContextMenuGroup( true, this, 'Table', FCKLang.TableProperties, true ) ;

		case 'Image' :
			return new FCKContextMenuGroup( true, this, 'Image', FCKLang.ImageProperties, true ) ;

		case 'Form' :
			return new FCKContextMenuGroup( true, this, 'Form', FCKLang.FormProp, true ) ;

		case 'Checkbox' :
			return new FCKContextMenuGroup( true, this, 'Checkbox', FCKLang.CheckboxProp, true ) ;

		case 'Radio' :
			return new FCKContextMenuGroup( true, this, 'Radio', FCKLang.RadioButtonProp, true ) ;

		case 'TextField' :
			return new FCKContextMenuGroup( true, this, 'TextField', FCKLang.TextFieldProp, true ) ;

		case 'HiddenField' :
			return new FCKContextMenuGroup( true, this, 'HiddenField', FCKLang.HiddenFieldProp, true ) ;

		case 'ImageButton' :
			return new FCKContextMenuGroup( true, this, 'ImageButton', FCKLang.ImageButtonProp, true ) ;

		case 'Button' :
			return new FCKContextMenuGroup( true, this, 'Button', FCKLang.ButtonProp, true ) ;

		case 'Select' :
			return new FCKContextMenuGroup( true, this, 'Select', FCKLang.SelectionFieldProp, true ) ;

		case 'Textarea' :
			return new FCKContextMenuGroup( true, this, 'Textarea', FCKLang.TextareaProp, true ) ;

		case 'BulletedList' :
			return new FCKContextMenuGroup( true, this, 'BulletedList', FCKLang.BulletedListProp, true ) ;

		case 'NumberedList' :
			return new FCKContextMenuGroup( true, this, 'NumberedList', FCKLang.NumberedListProp, true ) ;

		case 'Anchor' :
			return new FCKContextMenuGroup( true, this, 'Anchor', FCKLang.AnchorProp, true ) ;
	}
	
	return oGroup ;
}

FCKContextMenu.RefreshState = function()
{
  	// Get the actual selected tag (if any).
	var oTag = FCKSelection.GetSelectedElement() ;
	var sTagName ;

	if ( oTag )
	{
		sTagName = oTag.tagName ;
	}

	// Set items visibility.

	var bIsAnchor = ( sTagName == 'A' && oTag.name.length > 0 && oTag.href.length == 0 ) ;

	if ( this.Groups['Anchor'] )		this.Groups['Anchor'].SetVisible( bIsAnchor ) ;
	if ( this.Groups['Link'] )			this.Groups['Link'].SetVisible( !bIsAnchor && FCK.GetNamedCommandState( 'Unlink' ) != FCK_TRISTATE_DISABLED ) ;

	if ( this.Groups['TableCell'] )		this.Groups['TableCell'].SetVisible( sTagName != 'TABLE' && FCKSelection.HasAncestorNode('TABLE') ) ;
	if ( this.Groups['Table'] )			this.Groups['Table'].SetVisible( sTagName == 'TABLE' ) ;
	if ( this.Groups['Image'] )			this.Groups['Image'].SetVisible( sTagName == 'IMG' ) ;

	if ( this.Groups['BulletedList'] )	this.Groups['BulletedList'].SetVisible( FCKSelection.HasAncestorNode('UL') ) ;
	if ( this.Groups['NumberedList'] )	this.Groups['NumberedList'].SetVisible( FCKSelection.HasAncestorNode('OL') ) ;

	if ( this.Groups['Select'] )		this.Groups['Select'].SetVisible( sTagName == 'SELECT' ) ;
	if ( this.Groups['Textarea'] )		this.Groups['Textarea'].SetVisible( sTagName == 'TEXTAREA' ) ;
	if ( this.Groups['Form'] )			this.Groups['Form'].SetVisible( FCKSelection.HasAncestorNode('FORM') ) ;
	if ( this.Groups['Checkbox'] )		this.Groups['Checkbox'].SetVisible(		sTagName == 'INPUT' && oTag.type == 'checkbox' ) ;
	if ( this.Groups['Radio'] )			this.Groups['Radio'].SetVisible(		sTagName == 'INPUT' && oTag.type == 'radio' ) ;
	if ( this.Groups['TextField'] )		this.Groups['TextField'].SetVisible(	sTagName == 'INPUT' && ( oTag.type == 'text' || oTag.type == 'password' ) ) ;
	if ( this.Groups['HiddenField'] )	this.Groups['HiddenField'].SetVisible(	sTagName == 'INPUT' && oTag.type == 'hidden' ) ;
	if ( this.Groups['ImageButton'] )	this.Groups['ImageButton'].SetVisible(	sTagName == 'INPUT' && oTag.type == 'image' ) ;
	if ( this.Groups['Button'] )		this.Groups['Button'].SetVisible(		sTagName == 'INPUT' && ( oTag.type == 'button' || oTag.type == 'submit' || oTag.type == 'reset' ) ) ;

	// Refresh the state of all visible items (active/disactive)
	for ( var o in this.Groups )
	{
		this.Groups[o].RefreshState() ;
	}
}

/*
Sample Context Menu Output
-----------------------------------------
<div class="CM_ContextMenu">
	<table cellSpacing="0" cellPadding="0" border="0">
		<tr class="CM_Disabled">
			<td class="CM_Icon"><img alt="" src="icons/cut.gif" width="21" height="20" unselectable="on"></td>
			<td class="CM_Label" unselectable="on">Cut</td>
		</tr>
		<tr class="CM_Disabled">
			<td class="CM_Icon"><img height="20" alt="" src="icons/copy.gif" width="21"></td>
			<td class="CM_Label">Copy</td>
		</tr>
		<tr class="CM_Option" onmouseover="OnOver(this);" onmouseout="OnOut(this);">
			<td class="CM_Icon"><img height="20" alt="" src="icons/paste.gif" width="21"></td>
			<td class="CM_Label">Paste</td>
		</tr>
		<tr class="CM_Separator">
			<td class="CM_Icon"></td>
			<td class="CM_Label"><div></div></td>
		</tr>
		<tr class="CM_Option" onmouseover="OnOver(this);" onmouseout="OnOut(this);">
			<td class="CM_Icon"><img height="20" alt="" src="icons/print.gif" width="21"></td>
			<td class="CM_Label">Print</td>
		</tr>
		<tr class="CM_Separator">
			<td class="CM_Icon"></td>
			<td class="CM_Label"><div></div></td>
		</tr>
		<tr class="CM_Option" onmouseover="OnOver(this);" onmouseout="OnOut(this);">
			<td class="CM_Icon"></td>
			<td class="CM_Label">Do Something</td>
		</tr>
		<tr class="CM_Option" onmouseover="OnOver(this);" onmouseout="OnOut(this);">
			<td class="CM_Icon"></td>
			<td class="CM_Label">Just Testing</td>
		</tr>
	</table>
</div>
*/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本中文字幕一区二区有限公司| 亚洲精品高清视频在线观看| 欧美日韩视频一区二区| 91在线精品一区二区| 久久97超碰国产精品超碰| 捆绑调教美女网站视频一区| 日韩不卡一区二区三区| 麻豆国产精品视频| 国产美女精品一区二区三区| 国产真实乱对白精彩久久| 韩国理伦片一区二区三区在线播放 | 国产精品色婷婷久久58| 欧美国产激情二区三区 | 亚洲欧美一区二区不卡| 亚洲视频你懂的| 亚洲a一区二区| 日本不卡高清视频| 韩国精品一区二区| kk眼镜猥琐国模调教系列一区二区| 99久久99久久精品国产片果冻| 一本大道av伊人久久综合| 欧美女孩性生活视频| 欧美videos大乳护士334| 国产精品视频在线看| 伊人婷婷欧美激情| 久久精品久久99精品久久| 成人av在线看| 91.成人天堂一区| 国产日韩欧美综合一区| 亚洲免费av在线| 韩国女主播一区二区三区| 一本大道久久a久久综合婷婷| 欧美精品黑人性xxxx| 国产欧美精品一区二区色综合 | 欧美日韩一区二区欧美激情| 欧美一区二区三区播放老司机| 久久久久高清精品| 亚洲午夜成aⅴ人片| 国产乱码精品一区二区三区av| 91久久精品国产91性色tv| 日韩欧美123| 一级做a爱片久久| 国内精品嫩模私拍在线| 欧美日韩精品一区二区天天拍小说| 久久亚洲一区二区三区四区| 亚洲综合在线视频| 成人午夜激情片| 日韩美女视频在线| 亚洲大片在线观看| 91同城在线观看| 国产精品久久久久久久久久免费看 | 亚洲欧洲国产日韩| 国内外成人在线视频| 欧美在线不卡一区| 中文字幕永久在线不卡| 狠狠v欧美v日韩v亚洲ⅴ| 欧美乱熟臀69xxxxxx| 亚洲免费成人av| 97国产一区二区| 欧美激情在线看| 国产精品中文有码| 精品对白一区国产伦| 视频一区中文字幕| 欧美熟乱第一页| 亚洲激情一二三区| 99re成人精品视频| 国产精品乱人伦| 国产精品亚洲午夜一区二区三区 | 911精品产国品一二三产区| 亚洲蜜桃精久久久久久久| 成人亚洲一区二区一| 久久免费精品国产久精品久久久久| 日韩av午夜在线观看| 欧美日本乱大交xxxxx| 一区二区三区四区国产精品| 一本到不卡免费一区二区| 亚洲人成精品久久久久| 色婷婷综合激情| 亚洲主播在线观看| 欧美日免费三级在线| 亚洲在线一区二区三区| 欧美一a一片一级一片| 亚洲电影你懂得| 欧美精品xxxxbbbb| 麻豆91在线看| 国产欧美一区在线| 91小宝寻花一区二区三区| 综合久久久久综合| 在线精品观看国产| 日韩激情视频网站| 日韩一区二区精品葵司在线| 精品在线观看视频| 中文字幕 久热精品 视频在线 | 一区二区三区资源| 欧美老肥妇做.爰bbww| 理论片日本一区| 国产精品国产三级国产专播品爱网| 99精品国产热久久91蜜凸| 午夜精品久久久久久久久久| 日韩精品一区二区三区视频在线观看| 免费观看日韩av| 亚洲人成精品久久久久久| 欧美一区二区国产| 成人动漫av在线| 日韩国产欧美三级| 欧美国产综合一区二区| 欧美在线高清视频| 国产高清不卡二三区| 一区二区三区国产| 欧美精品一区二| 国产精品电影一区二区三区| 欧美年轻男男videosbes| 欧美成人r级一区二区三区| 国产麻豆视频一区| 亚洲免费视频成人| 精品国产一区二区三区四区四 | 风流少妇一区二区| 亚洲h在线观看| 国产精品美女一区二区三区| 欧美精品亚洲二区| 97aⅴ精品视频一二三区| 美女性感视频久久| 国产精品午夜久久| 日韩欧美成人激情| 欧美色网站导航| 成人精品国产一区二区4080| 日韩电影在线观看一区| 亚洲桃色在线一区| 久久精品视频免费观看| 欧美日韩美少妇| 色婷婷av一区二区三区软件 | 99久久伊人网影院| 精品中文字幕一区二区小辣椒 | 蜜臀av一区二区在线观看| 亚洲视频1区2区| 久久看人人爽人人| 欧美一级精品大片| 欧美一区二区在线看| 欧洲av一区二区嗯嗯嗯啊| 成人免费福利片| 韩国一区二区在线观看| 美脚の诱脚舐め脚责91 | 成人久久视频在线观看| 国内精品久久久久影院色| 久久精品国产精品亚洲红杏| 亚洲成av人在线观看| 午夜国产精品影院在线观看| 亚洲最色的网站| 亚洲激情第一区| 亚洲激情成人在线| 亚洲综合在线观看视频| 综合电影一区二区三区| 国产精品国产三级国产aⅴ中文| 久久久久久影视| 日韩欧美中文字幕公布| 日韩一卡二卡三卡| 欧美一二三区在线| 欧美成人一区二区三区在线观看| 欧美一区二区三区在线观看 | 国产福利91精品一区二区三区| 国产在线视频一区二区三区| 卡一卡二国产精品 | 日韩综合小视频| 亚洲综合一二三区| 婷婷国产v国产偷v亚洲高清| 亚洲成人777| 免费成人美女在线观看.| 久久精品噜噜噜成人av农村| 久久99国产精品久久99| 国产成人综合视频| av中文字幕不卡| 欧美视频在线观看一区| 91.com视频| 国产亚洲成av人在线观看导航| 欧美韩国日本不卡| 亚洲一级片在线观看| 亚洲男人的天堂一区二区| 一区二区三区欧美久久| 人禽交欧美网站| 国产精品123区| 色婷婷久久一区二区三区麻豆| 欧美视频在线观看一区二区| 欧美不卡激情三级在线观看| 亚洲欧洲性图库| 蜜臀久久久久久久| 成人av网址在线| 欧美日本乱大交xxxxx| 日本一区二区成人在线| 亚洲高清不卡在线观看| 国产盗摄精品一区二区三区在线| 色老头久久综合| 日韩精品一区二区三区视频 | 欧美成人乱码一区二区三区| 国产精品国产三级国产有无不卡 | 久久精品亚洲一区二区三区浴池| 亚洲人成网站色在线观看| 久久黄色级2电影| 97精品国产露脸对白| 久久久久久久久99精品| 亚洲国产另类av|