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

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

?? dojo.js.uncompressed.js

?? 對java中如何使用Ajax技術
?? JS
?? 第 1 頁 / 共 5 頁
字號:
if(typeof dojo == "undefined"){/*** @file bootstrap1.js** summary: First file that is loaded that 'bootstraps' the entire dojo library suite.* note:  Must run before hostenv_*.js file.** @author  Copyright 2004 Mark D. Anderson (mda@discerning.com)* TODOC: should the copyright be changed to Dojo Foundation?* @license Licensed under the Academic Free License 2.1 http://www.opensource.org/licenses/afl-2.1.php** $Id: bootstrap1.js 6824 2006-12-06 09:34:32Z alex $*/// TODOC: HOW TO DOC THE BELOW?// @global: djConfig// summary://		Application code can set the global 'djConfig' prior to loading//		the library to override certain global settings for how dojo works.// description:  The variables that can be set are as follows://			- isDebug: false//			- allowQueryConfig: false//			- baseScriptUri: ""//			- baseRelativePath: ""//			- libraryScriptUri: ""//			- iePreventClobber: false//			- ieClobberMinimal: true//			- locale: undefined//			- extraLocale: undefined//			- preventBackButtonFix: true//			- searchIds: []//			- parseWidgets: true// TODOC: HOW TO DOC THESE VARIABLES?// TODOC: IS THIS A COMPLETE LIST?// note://		'djConfig' does not exist under 'dojo.*' so that it can be set before the//		'dojo' variable exists.// note://		Setting any of these variables *after* the library has loaded does nothing at all.// TODOC: is this still true?  Release notes for 0.3 indicated they could be set after load.////TODOC:  HOW TO DOC THIS?// @global: dj_global// summary://		an alias for the top-level global object in the host environment//		(e.g., the window object in a browser).// description://		Refer to 'dj_global' rather than referring to window to ensure your//		code runs correctly in contexts other than web browsers (eg: Rhino on a server).var dj_global = this;//TODOC:  HOW TO DOC THIS?// @global: dj_currentContext// summary://		Private global context object. Where 'dj_global' always refers to the boot-time//    global context, 'dj_currentContext' can be modified for temporary context shifting.//    dojo.global() returns dj_currentContext.// description://		Refer to dojo.global() rather than referring to dj_global to ensure your//		code runs correctly in managed contexts.var dj_currentContext = this;// ****************************************************************// global public utils// TODOC: DO WE WANT TO NOTE THAT THESE ARE GLOBAL PUBLIC UTILS?// ****************************************************************function dj_undef(/*String*/ name, /*Object?*/ object){	//summary: Returns true if 'name' is defined on 'object' (or globally if 'object' is null).	//description: Note that 'defined' and 'exists' are not the same concept.	return (typeof (object || dj_currentContext)[name] == "undefined");	// Boolean}// make sure djConfig is definedif(dj_undef("djConfig", this)){	var djConfig = {};}//TODOC:  HOW TO DOC THIS?// dojo is the root variable of (almost all) our public symbols -- make sure it is defined.if(dj_undef("dojo", this)){	var dojo = {};}dojo.global = function(){	// summary:	//		return the current global context object	//		(e.g., the window object in a browser).	// description:	//		Refer to 'dojo.global()' rather than referring to window to ensure your	//		code runs correctly in contexts other than web browsers (eg: Rhino on a server).	return dj_currentContext;}// Override locale setting, if specifieddojo.locale  = djConfig.locale;//TODOC:  HOW TO DOC THIS?dojo.version = {	// summary: version number of this instance of dojo.	major: 0, minor: 4, patch: 1, flag: "",	revision: Number("$Rev: 6824 $".match(/[0-9]+/)[0]),	toString: function(){		with(dojo.version){			return major + "." + minor + "." + patch + flag + " (" + revision + ")";	// String		}	}}dojo.evalProp = function(/*String*/ name, /*Object*/ object, /*Boolean?*/ create){	// summary: Returns 'object[name]'.  If not defined and 'create' is true, will return a new Object.	// description:	//		Returns null if 'object[name]' is not defined and 'create' is not true.	// 		Note: 'defined' and 'exists' are not the same concept.	if((!object)||(!name)) return undefined; // undefined	if(!dj_undef(name, object)) return object[name]; // mixed	return (create ? (object[name]={}) : undefined);	// mixed}dojo.parseObjPath = function(/*String*/ path, /*Object?*/ context, /*Boolean?*/ create){	// summary: Parse string path to an object, and return corresponding object reference and property name.	// description:	//		Returns an object with two properties, 'obj' and 'prop'.	//		'obj[prop]' is the reference indicated by 'path'.	// path: Path to an object, in the form "A.B.C".	// context: Object to use as root of path.  Defaults to 'dojo.global()'.	// create: If true, Objects will be created at any point along the 'path' that is undefined.	var object = (context || dojo.global());	var names = path.split('.');	var prop = names.pop();	for (var i=0,l=names.length;i<l && object;i++){		object = dojo.evalProp(names[i], object, create);	}	return {obj: object, prop: prop};	// Object: {obj: Object, prop: String}}dojo.evalObjPath = function(/*String*/ path, /*Boolean?*/ create){	// summary: Return the value of object at 'path' in the global scope, without using 'eval()'.	// path: Path to an object, in the form "A.B.C".	// create: If true, Objects will be created at any point along the 'path' that is undefined.	if(typeof path != "string"){		return dojo.global();	}	// fast path for no periods	if(path.indexOf('.') == -1){		return dojo.evalProp(path, dojo.global(), create);		// mixed	}	//MOW: old 'with' syntax was confusing and would throw an error if parseObjPath returned null.	var ref = dojo.parseObjPath(path, dojo.global(), create);	if(ref){		return dojo.evalProp(ref.prop, ref.obj, create);	// mixed	}	return null;}dojo.errorToString = function(/*Error*/ exception){	// summary: Return an exception's 'message', 'description' or text.	// TODO: overriding Error.prototype.toString won't accomplish this? 	// 		... since natively generated Error objects do not always reflect such things?	if(!dj_undef("message", exception)){		return exception.message;		// String	}else if(!dj_undef("description", exception)){		return exception.description;	// String	}else{		return exception;				// Error	}}dojo.raise = function(/*String*/ message, /*Error?*/ exception){	// summary: Common point for raising exceptions in Dojo to enable logging.	//	Throws an error message with text of 'exception' if provided, or	//	rethrows exception object.	if(exception){		message = message + ": "+dojo.errorToString(exception);	}else{		message = dojo.errorToString(message);	}	// print the message to the user if hostenv.println is defined	try { if(djConfig.isDebug){ dojo.hostenv.println("FATAL exception raised: "+message); } } catch (e) {}	throw exception || Error(message);}//Stub functions so things don't break.//TODOC:  HOW TO DOC THESE?dojo.debug = function(){};dojo.debugShallow = function(obj){};dojo.profile = { start: function(){}, end: function(){}, stop: function(){}, dump: function(){} };function dj_eval(/*String*/ scriptFragment){	// summary: Perform an evaluation in the global scope.  Use this rather than calling 'eval()' directly.	// description: Placed in a separate function to minimize size of trapped evaluation context.	// note:	//	 - JSC eval() takes an optional second argument which can be 'unsafe'.	//	 - Mozilla/SpiderMonkey eval() takes an optional second argument which is the	//  	 scope object for new symbols.	return dj_global.eval ? dj_global.eval(scriptFragment) : eval(scriptFragment); 	// mixed}dojo.unimplemented = function(/*String*/ funcname, /*String?*/ extra){	// summary: Throw an exception because some function is not implemented.	// extra: Text to append to the exception message.	var message = "'" + funcname + "' not implemented";	if (extra != null) { message += " " + extra; }	dojo.raise(message);}dojo.deprecated = function(/*String*/ behaviour, /*String?*/ extra, /*String?*/ removal){	// summary: Log a debug message to indicate that a behavior has been deprecated.	// extra: Text to append to the message.	// removal: Text to indicate when in the future the behavior will be removed.	var message = "DEPRECATED: " + behaviour;	if(extra){ message += " " + extra; }	if(removal){ message += " -- will be removed in version: " + removal; }	dojo.debug(message);}dojo.render = (function(){	//TODOC: HOW TO DOC THIS?	// summary: Details rendering support, OS and browser of the current environment.	// TODOC: is this something many folks will interact with?  If so, we should doc the structure created...	function vscaffold(prefs, names){		var tmp = {			capable: false,			support: {				builtin: false,				plugin: false			},			prefixes: prefs		};		for(var i=0; i<names.length; i++){			tmp[names[i]] = false;		}		return tmp;	}	return {		name: "",		ver: dojo.version,		os: { win: false, linux: false, osx: false },		html: vscaffold(["html"], ["ie", "opera", "khtml", "safari", "moz"]),		svg: vscaffold(["svg"], ["corel", "adobe", "batik"]),		vml: vscaffold(["vml"], ["ie"]),		swf: vscaffold(["Swf", "Flash", "Mm"], ["mm"]),		swt: vscaffold(["Swt"], ["ibm"])	};})();// ****************************************************************// dojo.hostenv methods that must be defined in hostenv_*.js// ****************************************************************/** * The interface definining the interaction with the EcmaScript host environment.*//* * None of these methods should ever be called directly by library users. * Instead public methods such as loadModule should be called instead. */dojo.hostenv = (function(){	// TODOC:  HOW TO DOC THIS?	// summary: Provides encapsulation of behavior that changes across different 'host environments'	//			(different browsers, server via Rhino, etc).	// description: None of these methods should ever be called directly by library users.	//				Use public methods such as 'loadModule' instead.	// default configuration options	var config = {		isDebug: false,		allowQueryConfig: false,		baseScriptUri: "",		baseRelativePath: "",		libraryScriptUri: "",		iePreventClobber: false,		ieClobberMinimal: true,		preventBackButtonFix: true,		delayMozLoadingFix: false,		searchIds: [],		parseWidgets: true	};	if (typeof djConfig == "undefined") { djConfig = config; }	else {		for (var option in config) {			if (typeof djConfig[option] == "undefined") {				djConfig[option] = config[option];			}		}	}	return {		name_: '(unset)',		version_: '(unset)',		getName: function(){			// sumary: Return the name of the host environment.			return this.name_; 	// String		},		getVersion: function(){			// summary: Return the version of the hostenv.			return this.version_; // String		},		getText: function(/*String*/ uri){			// summary:	Read the plain/text contents at the specified 'uri'.			// description:			//			If 'getText()' is not implemented, then it is necessary to override			//			'loadUri()' with an implementation that doesn't rely on it.			dojo.unimplemented('getText', "uri=" + uri);		}	};})();dojo.hostenv.getBaseScriptUri = function(){	// summary: Return the base script uri that other scripts are found relative to.	// TODOC: HUH?  This comment means nothing to me.  What other scripts? Is this the path to other dojo libraries?	//		MAYBE:  Return the base uri to scripts in the dojo library.	 ???	// return: Empty string or a path ending in '/'.	if(djConfig.baseScriptUri.length){		return djConfig.baseScriptUri;	}	// MOW: Why not:	//			uri = djConfig.libraryScriptUri || djConfig.baseRelativePath	//		??? Why 'new String(...)'	var uri = new String(djConfig.libraryScriptUri||djConfig.baseRelativePath);	if (!uri) { dojo.raise("Nothing returned by getLibraryScriptUri(): " + uri); }	// MOW: uri seems to not be actually used.  Seems to be hard-coding to djConfig.baseRelativePath... ???	var lastslash = uri.lastIndexOf('/');		// MOW ???	djConfig.baseScriptUri = djConfig.baseRelativePath;	return djConfig.baseScriptUri;	// String}/* * loader.js - A bootstrap module.  Runs before the hostenv_*.js file. Contains all of the package loading methods. *///A semi-colon is at the start of the line because after doing a build, this function definition//get compressed onto the same line as the last line in bootstrap1.js. That list line is just a//curly bracket, and the browser complains about that syntax. The semicolon fixes it. Putting it//here instead of at the end of bootstrap1.js, since it is more of an issue for this file, (using//the closure), and bootstrap1.js could change in the future.;(function(){	//Additional properties for dojo.hostenv	var _addHostEnv = {		pkgFileName: "__package__",			// for recursion protection		loading_modules_: {},		loaded_modules_: {},		addedToLoadingCount: [],		removedFromLoadingCount: [],			inFlightCount: 0,			// FIXME: it should be possible to pull module prefixes in from djConfig		modulePrefixes_: {			dojo: {name: "dojo", value: "src"}		},		setModulePrefix: function(/*String*/module, /*String*/prefix){			// summary: establishes module/prefix pair			this.modulePrefixes_[module] = {name: module, value: prefix};		},		moduleHasPrefix: function(/*String*/module){			// summary: checks to see if module has been established			var mp = this.modulePrefixes_;			return Boolean(mp[module] && mp[module].value); // Boolean		},

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天堂成人国产精品一区| 日韩欧美一级在线播放| www亚洲一区| 国产亚洲视频系列| 国产伦理精品不卡| 欧美经典一区二区三区| 亚洲图片欧美色图| 91成人看片片| 中文字幕欧美三区| 视频在线在亚洲| 日韩一区二区在线播放| 久久国产视频网| 91久久一区二区| 亚洲一区二区三区在线看| 国产成人夜色高潮福利影视| 久久久久久一级片| 99久久99久久精品国产片果冻 | 欧洲视频一区二区| 亚洲不卡av一区二区三区| 3atv在线一区二区三区| 国产在线不卡一卡二卡三卡四卡| 国产日韩欧美在线一区| www.日韩在线| 日本网站在线观看一区二区三区| 99re66热这里只有精品3直播| 国产精品人成在线观看免费 | 韩国理伦片一区二区三区在线播放 | 欧美一区二区性放荡片| 韩国精品主播一区二区在线观看 | 国产精品九色蝌蚪自拍| 精品一区二区三区在线观看| 欧美激情一区二区| 欧美日韩国产美| 国产成人午夜视频| 亚洲v精品v日韩v欧美v专区| 这里只有精品99re| 日韩国产欧美在线播放| 久久久不卡网国产精品一区| 另类小说一区二区三区| 国产欧美一区二区精品婷婷| 色94色欧美sute亚洲线路二| 亚洲天堂a在线| www.亚洲色图| 美女脱光内衣内裤视频久久网站 | 精品视频在线免费观看| 亚洲另类春色国产| 欧美成人r级一区二区三区| 日韩电影免费在线观看网站| 欧美丝袜自拍制服另类| 国产成人精品亚洲午夜麻豆| 亚州成人在线电影| 7777精品伊人久久久大香线蕉超级流畅 | 午夜影院在线观看欧美| 国产精品水嫩水嫩| 欧美一区二区久久久| 色综合天天做天天爱| 亚洲欧洲综合另类| 久久综合久色欧美综合狠狠| 国产精选一区二区三区| 午夜精品久久久久久不卡8050 | 中文字幕中文乱码欧美一区二区 | 欧美一级免费观看| 黑人精品欧美一区二区蜜桃| 精品剧情v国产在线观看在线| 欧洲国产伦久久久久久久| 国产成人精品影视| 国产精品一色哟哟哟| 国产精品美女一区二区在线观看| 欧美日韩一区二区电影| 另类人妖一区二区av| 午夜精品福利在线| 亚欧色一区w666天堂| 一区二区三区蜜桃| 欧美r级电影在线观看| 成人综合在线观看| 激情国产一区二区| 激情小说亚洲一区| 亚洲天堂2014| 91精品在线一区二区| 国产一区二区在线看| 久久国产精品99久久人人澡| 首页国产欧美久久| 美女视频黄久久| 久久精品国产亚洲5555| 亚洲乱码国产乱码精品精可以看| 欧美日韩精品三区| 国产成人精品一区二| 国产乱码精品一区二区三区忘忧草 | 亚洲成年人网站在线观看| 精品美女在线观看| 日韩精品专区在线影院观看| 日韩欧美国产精品一区| 精品区一区二区| 精品国产自在久精品国产| 色欧美乱欧美15图片| 欧美伊人久久大香线蕉综合69| 精品亚洲国内自在自线福利| 久久99精品网久久| 国产精品原创巨作av| 成人免费视频视频在线观看免费| 波多野结衣一区二区三区| 91视视频在线直接观看在线看网页在线看 | 久久女同互慰一区二区三区| 91免费小视频| 国内精品伊人久久久久av一坑| 亚洲精品国产精品乱码不99| 久久婷婷色综合| 在线播放欧美女士性生活| 国产成人av电影在线播放| 国产成人av一区二区| 91网页版在线| 国产精品白丝jk黑袜喷水| 粉嫩高潮美女一区二区三区| 成人爱爱电影网址| 欧美日韩黄色影视| 精品精品国产高清一毛片一天堂| 欧美国产1区2区| 日日嗨av一区二区三区四区| 亚洲欧美日韩在线| 久久精品日韩一区二区三区| 亚洲私人影院在线观看| 青娱乐精品在线视频| 午夜影院久久久| 国产精品自拍一区| 91成人在线免费观看| 日韩精品综合一本久道在线视频| 国产精品成人一区二区艾草 | 日韩精品一级中文字幕精品视频免费观看 | www.性欧美| 国产老女人精品毛片久久| 美国十次了思思久久精品导航| 国产美女精品在线| 日韩中文字幕av电影| 亚洲国产人成综合网站| 黄页视频在线91| 欧美在线视频全部完| 精品少妇一区二区三区在线播放 | 国产成人精品免费一区二区| 国内精品伊人久久久久影院对白| 奇米亚洲午夜久久精品| 看电视剧不卡顿的网站| 色欧美片视频在线观看| 中文在线一区二区| 九色|91porny| 国产一区二三区| 国产福利一区二区三区视频在线| 在线免费观看成人短视频| 欧美日韩亚洲不卡| 综合激情成人伊人| 国产精品一区二区三区网站| 欧美精品一卡两卡| 欧美精品一区二区三区蜜桃视频| 久久影院视频免费| 日韩电影网1区2区| 欧美日韩一二三| 久久综合精品国产一区二区三区| 一区二区三区高清在线| 视频一区二区国产| 一本色道综合亚洲| 欧美三电影在线| 欧美一区二区三区在线电影| 亚洲精品菠萝久久久久久久| 丁香婷婷综合色啪| 精品视频免费看| 精品国产乱码久久久久久蜜臀 | 国产精品亚洲人在线观看| 7777精品伊人久久久大香线蕉经典版下载 | 玉米视频成人免费看| 99视频精品免费视频| 国产日韩欧美综合一区| 亚洲黄网站在线观看| 91蝌蚪porny九色| 国产精品国产三级国产有无不卡 | 9色porny自拍视频一区二区| 在线免费不卡视频| 2020国产精品自拍| 狠狠色伊人亚洲综合成人| 不卡的av在线| 国产精品美女一区二区三区| 午夜精品成人在线视频| 激情六月婷婷综合| 26uuu国产一区二区三区| 亚洲欧美日韩久久| 色婷婷综合五月| 亚洲综合av网| 7777精品伊人久久久大香线蕉完整版 | 亚洲欧美另类图片小说| 成人动漫视频在线| 亚洲丝袜另类动漫二区| 在线观看免费亚洲| 日本美女一区二区三区| 欧美电视剧免费观看| 亚洲精品免费一二三区| 国内精品写真在线观看| 欧美日韩久久久一区| 一区在线观看免费| 欧美四级电影在线观看| 亚洲欧美中日韩| 国产九色sp调教91| 亚洲乱码日产精品bd |