📄 extras.js
字号:
/* Copyright (c) 2004-2006, The Dojo Foundation All Rights Reserved. Licensed under the Academic Free License version 2.1 or above OR the modified BSD license. For more information on Dojo licensing, see: http://dojotoolkit.org/community/licensing.shtml*/dojo.provide("dojo.lang.extras");dojo.require("dojo.lang.common");dojo.lang.setTimeout = function(/*Function*/func, /*int*/delay /*, ...*/){ // summary: // Sets a timeout in milliseconds to execute a function in a given context // with optional arguments. // // usage: // setTimeout (Object context, function func, number delay[, arg1[, ...]]); // setTimeout (function func, number delay[, arg1[, ...]]); var context = window, argsStart = 2; if(!dojo.lang.isFunction(func)){ context = func; func = delay; delay = arguments[2]; argsStart++; } if(dojo.lang.isString(func)){ func = context[func]; } var args = []; for (var i = argsStart; i < arguments.length; i++){ args.push(arguments[i]); } return dojo.global().setTimeout(function () { func.apply(context, args); }, delay); // int}dojo.lang.clearTimeout = function(/*int*/timer){ // summary: clears timer by number from the execution queue dojo.global().clearTimeout(timer);}dojo.lang.getNameInObj = function(/*Object*/ns, /*unknown*/item){ // summary: looks for a value in the object ns with a value matching item and returns the property name // ns: if null, dj_global is used // item: value to match if(!ns){ ns = dj_global; } for(var x in ns){ if(ns[x] === item){ return new String(x); // String } } return null; // null}dojo.lang.shallowCopy = function(/*Object*/obj, /*Boolean?*/deep){ // summary: copies object obj one level deep, or full depth if deep is true var i, ret; if(obj === null){ /*obj: null*/ return null; } // null if(dojo.lang.isObject(obj)){ // obj: Object ret = new obj.constructor(); for(i in obj){ if(dojo.lang.isUndefined(ret[i])){ ret[i] = deep ? dojo.lang.shallowCopy(obj[i], deep) : obj[i]; } } } else if(dojo.lang.isArray(obj)){ // obj: Array ret = []; for(i=0; i<obj.length; i++){ ret[i] = deep ? dojo.lang.shallowCopy(obj[i], deep) : obj[i]; } } else { // obj: unknown ret = obj; } return ret; // unknown}dojo.lang.firstValued = function(/* ... */){ // summary: Return the first argument that isn't undefined for(var i = 0; i < arguments.length; i++){ if(typeof arguments[i] != "undefined"){ return arguments[i]; // unknown } } return undefined; // undefined}dojo.lang.getObjPathValue = function(/*String*/objpath, /*Object?*/context, /*Boolean?*/create){ // summary: // Gets a value from a reference specified as a string descriptor, // (e.g. "A.B") in the given context. // // context: if not specified, dj_global is used // create: if true, undefined objects in the path are created. with(dojo.parseObjPath(objpath, context, create)){ return dojo.evalProp(prop, obj, create); // unknown }}dojo.lang.setObjPathValue = function(/*String*/objpath, /*unknown*/value, /*Object?*/context, /*Boolean?*/create){ // summary: // Sets a value on a reference specified as a string descriptor. // (e.g. "A.B") in the given context. // // context: if not specified, dj_global is used // create: if true, undefined objects in the path are created. if(arguments.length < 4){ create = true; } with(dojo.parseObjPath(objpath, context, create)){ if(obj && (create || (prop in obj))){ obj[prop] = value; } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -