⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fckdebug.js

📁 一个jsp写的bbs
💻 JS
字号:
/*
 * FCKeditor - The text editor for internet
 * Copyright (C) 2003-2005 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/
 * 
 * "Support Open Source software. What about a donation today?"
 * 
 * File Name: fckdebug.js
 * 	Debug window control and operations.
 * 
 * File Authors:
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
 */

var FCKDebug = new Object() ;

if ( FCKConfig.Debug )
{
	FCKDebug.Output = function( message, color, noParse )
	{
		if ( ! FCKConfig.Debug ) return ;
		
		if ( !noParse && message != null && isNaN( message ) )
			message = message.replace(/</g, "&lt;") ;

		if ( !this.DebugWindow || this.DebugWindow.closed )
			this.DebugWindow = window.open( FCKConfig.BasePath + 'fckdebug.html', 'FCKeditorDebug', 'menubar=no,scrollbars=no,resizable=yes,location=no,toolbar=no,width=600,height=500', true ) ;
		
		if ( this.DebugWindow.Output)
		{
			try 
			{
				this.DebugWindow.Output( message, color ) ;
			} 
			catch ( e ) {}	 // Ignore errors
		}
	}

	FCKDebug.OutputObject = function( anyObject, color )
	{
		var message ;
		
		if ( anyObject != null ) 
		{
			message = 'Properties of: ' + anyObject + '</b><blockquote>' ;
			
			for (var prop in anyObject)
			{
				var sVal = anyObject[ prop ] ? anyObject[ prop ] + '' : '[null]' ;
				try 
				{
					message += '<b>' + prop + '</b> : ' + sVal.replace(/</g, '&lt;') + '<br>' ;
				} 
				catch (e)
				{
					message += '<b>' + prop + '</b> : [' + typeof( anyObject[ prop ] ) + ']<br>' ;
				}
			}

			message += '</blockquote><b>' ; 
		} else
			message = 'OutputObject : Object is "null".' ;
			
		FCKDebug.Output( message, color, true ) ;
	}
}
else
{
	FCKDebug.Output			= function() {}
	FCKDebug.OutputObject	= function() {}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -