📄 system.js
字号:
* @class Math * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */function Math(){};Math.prototype=new Object();/** * Property E * @class Math * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.E=0;/** * Property LN10 * @class Math * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.LN10=0;/** * Property LN2 * @class Math * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.LN2=0;/** * Property LOG2E * @class Math * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.LOG2E=0;/** * Property LOG10E * @class Math * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.LOG10E=0;/** * Property PI * @class Math * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.PI=0;/** * Property SQRT1_2 * @class Math * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.SQRT1_2=0;/** * Property SQRT2 * @class Math * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.SQRT2=0;/** * function abs(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.abs=function(x){};/** * function acos(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.acos=function(x){};/** * function asin(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.asin=function(x){};/** * function atan(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.atan=function(x){};/** * function atan2(x,y) * @class Math * @param x Number * @param y Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.atan2=function(x,y){};/** * function ceil(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.ceil=function(x){};/** * function cos(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.cos=function(x){};/** * function exp(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.exp=function(x){};/** * function floor(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.floor=function(x){};/** * function log(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.log=function(x){};/** * function max(arg) * @class Math * @param arg Array * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.max=function(arg){};/** * function min(arg) * @class Math * @param arg Array * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.min=function(arg){};/** * function pow(x,y) * @class Math * @param x Number @ @param y Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.pow=function(x,y){};/** * function pow() * @class Math * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.random=function(){};/** * function round(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.round=function(x){};/** * function sin(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.sin=function(x){};/** * function sqrt(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.sqrt=function(x){};/** * function tan(x) * @class Math * @param x Number * @type Number * @return Number * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Math.tan=function(x){};/** * Object RegExp() * @super Object * @constructor * @class RegExp * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */function RegExp(){};RegExp.prototype=new Object();/** * function exec(string) * @param string String * @return Array * @type Array * @class RegExp * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */RegExp.prototype.exec=function(string){};/** * function test(string) * @param string String * @return Boolean * @type Boolean * @class RegExp * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */RegExp.prototype.test=function(string){};/** * property source * @type String * @class RegExp * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */RegExp.prototype.source="";/** * property global * @type String * @class RegExp * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */RegExp.prototype.global="";/** * property ignoreCase * @type Boolean * @class RegExp * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */RegExp.prototype.ignoreCase=false;/** * property multiline * @type Boolean * @class RegExp * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */RegExp.prototype.multiline=false;/** * property lastIndex * @type Number * @class RegExp * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */RegExp.prototype.lastIndex=0;/** * Object Error(message) * @super Object * @constructor * @param message String * @class Error * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */function Error(message){};Error.prototype=new Object();/** * property name * @type String * @class Error * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Error.prototype.name="";/** * property message * @type String * @class Error * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */Error.prototype.message="";/** * Object EvalError() * @super Error * @constructor * @class EvalError * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */function EvalError(){};EvalError.prototype=new Error("");/** * Object RangeError() * @super Error * @constructor * @class RangeError * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */function RangeError(){};RangeError.prototype=new Error("");/** * Object ReferenceError() * @super Error * @constructor * @class ReferenceError * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */function ReferenceError(){};ReferenceError.prototype=new Error("");/** * Object SyntaxError() * @super Error * @constructor * @class SyntaxError * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */function SyntaxError(){};SyntaxError.prototype=new Error("");/** * Object TypeError() * @super Error * @constructor * @class TypeError * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */function TypeError(){};TypeError.prototype=new Error("");/** * Object URIError() * @super Error * @constructor * @class URIError * @since Standard ECMA-262 3rd. Edition * @since Level 2 Document Object Model Core Definition. * @link http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html */function URIError(){};URIError.prototype=new Error("");//support for debugger keywordvar debugger = null;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -