📄 system.js
字号:
Number.MIN_VALUE=0;/** * property MAX_VALUE * @type Number * @class 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 */Number.MAX_VALUE=0;/** * property NaN * @type Number * @class 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 */Number.NaN=0;/** * property NEGATIVE_INFINITY * @type Number * @class 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 */Number.NEGATIVE_INFINITY=0;/** * property POSITIVE_INFINITY * @type Number * @class 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 */Number.POSITIVE_INFINITY=0;/** * function toFixed(fractionDigits) * @type Number * @class Number * @param fractionDigits 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 */Number.prototype.toFixed=function(fractionDigits){};/** * function toExponential(fractionDigits) * @type Number * @class Number * @param fractionDigits 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 */Number.prototype.toExponential=function(fractionDigits){};/** * function toPrecision(precision) * @type Number * @class Number * @param precision 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 */Number.prototype.toPrecision=function(fractionDigits){};/** * Object Boolean() * @super Object * @constructor * @class Boolean * @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 Boolean(){};Boolean.prototype = new Object();/** * Object Array() * @super Object * @constructor * @class Array * @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 */Array.prototype = new Object();function Array(){}/** * Property length * @type Number * @class Array * @see Array * @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 */ Array.prototype.length = 1;/** * function concat(args) * @param args Array * @type Array * @return Array * @class Array * @see Array * @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 */ Array.prototype.concat = function(args){};/** * function join(seperator) * @param seperator String * @type Array * @return Array * @class Array * @see Array * @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 */ Array.prototype.join = function(seperator){};/** * function pop() * @type Object * @return Object * @class Array * @see Array * @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 */ Array.prototype.pop = function(){};/** * function push(args) * @param args Array * @class Array * @see Array * @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 */ Array.prototype.push = function(args){};/** * function reverse() * @type Array * @return Array * @class Array * @see Array * @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 */ Array.prototype.reverse = function(){};/** * function shift() * @type Object * @return Object * @class Array * @see Array * @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 */ Array.prototype.shift = function(){};/** * function slice(start, end) * @type Array * @return Array * @param start Number * @param end Number * @class Array * @see Array * @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 */ Array.prototype.slice = function(start, end){};/** * function sort(funct) * @type Array * @return Array * @param funct Function * @class Array * @see Array * @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 */ Array.prototype.sort = function(funct){};/** * function splice(start, deletecount, items) * @type Array * @return Array * @param start Number * @param deletecount Number * @param items Array * @class Array * @see Array * @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 */ Array.prototype.splice = function(start, deletecount, items){};/** * function unshift(items) * @type Array * @return Array * @param items Array * @class Array * @see Array * @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 */ Array.prototype.unshift = function(start){};/** * Object Function() * @super Object * @constructor * @class Function * @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.prototype = new Object();function Function(){};/** * function apply (thisArg, argArray) * @param thisArg Object * @param argArray Array * @type Object * @return Object * @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.prototype.apply=function(thisArg, argArray){};/** * function call (thisArg, argArray) * @param thisArg Object * @param argArray Array * @type Object * @return Object * @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.prototype.call=function(thisArg, argArray){};/** * property length * @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 */ Function.prototype.length=0;/** * function HasInstance() * @type Boolean * @return Boolean * @class Function * @see Array * @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.prototype.HasInstance=function(){};/** * Object Date(s) * @super Object * @constructor * @class Date * @param s String * @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 */Date.prototype = new Object();function Date(s){}/** * function MakeTime(hour, min, sec, ms) * @class Date * @param hour Number * @param min Number * @param sec Number * @param ms 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 */Date.MakeTime =function(hour, min, sec, ms){};/** * function MakeDay(year, month, date) * @class Date * @param year Number * @param month Number * @param date 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 */Date.MakeDay =function(year, month, date){};/** * function MakeDate(day,time) * @class Date * @param day Number * @param time 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 */Date.MakeDate =function(day,time){};/** * function TimeClip(time) * @class Date * @param time 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 */Date.TimeClip =function(time){};/** * function parse(string) * @class Date * @param string Strig * @type Date * @return Date * @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 */Date.parse=function(string){};/** * function toDateString() * @class Date * @type String * @return String * @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 */Date.prototype.toDateString=function(){};/** * function toTimeString() * @class Date * @type String * @return String * @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 */Date.prototype.toTimeString=function(){};/** * function toLocaleString() * @class Date * @type String * @return String * @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 */Date.prototype.toLocaleString=function(){return "";};/** * function toLocaleDateString() * @class Date * @type String * @return String * @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 */Date.prototype.toLocaleDateString=function(){};/** * function toLocaleTimeString() * @class Date * @type String * @return String * @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 */Date.prototype.toLocaleTimeString=function(){};/** * function valueOf() * @class Date * @type Object * @return Object * @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 */Date.prototype.valueOf=function(){};/** * function getTime() * @class Date * @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 */Date.prototype.getTime=function(){};/** * function getTime() * @class Date * @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 */Date.prototype.getTime=function(){};/** * function getFullYear() * @class Date * @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 */Date.prototype.getFullYear=function(){};/** * function getTime() * @class Date * @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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -