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

📄 console.js

📁 这是一个ajax的例子大家好好的看看就是一个鱼眼的效果
💻 JS
字号:
if(!dojo._hasResource["dojox.help.console"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.dojo._hasResource["dojox.help.console"] = true;dojo.provide("dojox.help.console");dojo.require("dojox.help._base");dojo.mixin(dojox.help, {	_plainText: function(str){		return str.replace(/(<[^>]*>|&[^;]{2,6};)/g, '');	},	_displayLocated: function(located){		var obj = {};		dojo.forEach(located, function(item){ obj[item[0]] = (+dojo.isFF) ? { toString: function(){ return "Click to view"; }, item: item[1] } : item[1]; });		console.dir(obj);	},	_displayHelp: function(loading, obj){		if(loading){			var message = "Help for: " + obj.name;			console.log(message);			var underline = "";			for(var i = 0; i < message.length; i++){				underline += "=";			}			console.log(underline);		}else if(!obj){			console.log("No documentation for this object");		}else{			var anything = false;			for(var attribute in obj){				var value = obj[attribute];				if(attribute == "returns" && obj.type != "Function" && obj.type != "Constructor"){					continue;				}				if(value && (!dojo.isArray(value) || value.length)){					anything = true;					console.info(attribute.toUpperCase());					value = dojo.isString(value) ? dojox.help._plainText(value) : value;					if(attribute == "returns"){						var returns = dojo.map(value.types || [], "return item.title;").join("|");						if(value.summary){							if(returns){								returns += ": ";							}							returns += dojox.help._plainText(value.summary);						}						console.log(returns || "Uknown");					}else if(attribute == "parameters"){						for(var j = 0, parameter; parameter = value[j]; j++){							var type = dojo.map(parameter.types, "return item.title").join("|");							console.log((type) ? (parameter.name + ": " + type) : parameter.name);							var summary = "";							if(parameter.optional){								summary += "Optional. ";							}							if(parameter.repating){								summary += "Repeating. ";							}							summary += dojox.help._plainText(parameter.summary);							if(summary){								summary = "  - " + summary;								for(var k = 0; k < parameter.name.length; k++){									summary = " " + summary;								}								console.log(summary);							}						}					}else{						console.log(value);					}				}			}			if(!anything){				console.log("No documentation for this object");			}		}	}});dojox.help.init();}

⌨️ 快捷键说明

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