📄 basebrowserlibrary.js
字号:
* @throws DOMException * @see Element * @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 */Element.prototype.removeAttribute=function(name){}; /** * function getAttributeNode(name) * @type Attr * @class Element * @param name String * @return Attr * @see Element * @see Attr * @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 */ Element.prototype.getAttributeNode=function(name){}; /** * function setAttributeNode(newAttr) * @type Attr * @class Element * @param newAttr Attr * @return Attr * @throws DOMException * @see Element * @see Attr * @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 */ Element.prototype.setAttributeNode=function(newAttr){}; /** * function removeAttributeNode(oldAttr) * @type Attr * @class Element * @param oldAttr Attr * @return Attr * @throws DOMException * @see Element * @see Attr; * @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 */ Element.prototype.removeAttributeNode=function(oldAttr){}; /** * function getElementsByTagName(name) * @type NodeList * @class Element * @param name String * @return NodeList * @see NodeList * @see Element; * @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 */ Element.prototype.getElementsByTagName=function(name){}; /** * function getAttributeNS(namespaceURI, localName) * @type String * @class Element * @param namespaceURI String * @param localName String * @return String * @see Element * @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 */ Element.prototype.getAttributeNS=function(namespaceURI, localName){}; /** * function setAttributeNS(namespaceURI, qualifiedName, value) * @class Element * @param namespaceURI String * @param qualifiedName String * @param value String * @throws DOMException * @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 */ Element.prototype.setAttributeNS=function(namespaceURI, qualifiedName, value){}; /** * function removeAttributeNS(namespaceURI, localName) * @class Element * @param namespaceURI String * @param localName String * @throws DOMException * @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 */ Element.prototype.removeAttributeNS=function(namespaceURI, localName){}; /** * function getAttributeNodeNS(namespaceURI, localName) * @type Attr * @class Element * @param namespaceURI String * @param localName String * @return Attr * @throws DOMException * @see Attr * @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 */ Element.prototype.getAttributeNodeNS=function(namespaceURI, localName){}; /** * function setAttributeNodeNS(newAttr) * @type Attr * @class Element * @param newAttr Attr * @return Attr * @throws DOMException * @see Attr * @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 */ Element.prototype.setAttributeNodeNS=function(newAttr){}; /** * function getElementsByTagNameNS(namespaceURI, localName) * @type NodeList * @class Element * @param namespaceURI String * @param localName String * @return NodeList * @see NodeList * @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 */ Element.prototype.getElementsByTagNameNS=function(namespaceURI, localName){}; /** * function hasAttribute(name) * @type Boolean * @class Element * @param name String * @return 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 */ Element.prototype.hasAttribute=function(name){}; /** * function hasAttributeNS(namespaceURI, localName) * @type Boolean * @class Element * @param namespaceURI String * @param localName String * @return 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 */ Element.prototype.hasAttributeNS=function(namespaceURI, localName){}; /** * Object Text() * Text inherits all of the methods and properties from CharacterData. * @super CharacterData * @constructor * @class Text * @see CharacterData * @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 Text(){};Text.prototype = new CharacterData(); /** * function splitText(offset) * @type Text * @class Text * @param offset Number * @return Text * @throws DOMException * @see Text * @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 */ Text.prototype.splitText=function(offset){}; /** * Object Comment() * Comment inherits all of the methods and properties from CharacterData. * @super CharacterData * @constructor * @class Comment * @see CharacterData * @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 Comment(){};Comment.prototype = new CharacterData();/** * Object CDATASection() * Comment inherits all of the methods and properties from Text. * @super Text * @constructor * @class CDATASection * @see Text * @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 CDATASection(){};CDATASection.prototype = new Text();/** * Object DocumentType() * DocumentType inherits all of the methods and properties from Node. * @super Node * @constructor * @class DocumenType * @see Node * @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 DocumentType(){};DocumentType.prototype = new Node(); /** * read-only Property name * @type String * @class DocumentType * @see DocumentType(); * @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 */DocumentType.prototype.name=""; /** * read-only Property entities * @type NamedNodeMap * @class DocumentType * @see DocumentType(); * @see NamedNodeMap * @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 */DocumentType.prototype.entities = new NamedNodeMap();/** * Read-Only Property notations * @type NamedNodeMap * @class DocumentType * @see DocumentType(); * @see NamedNodeMap * @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 */DocumentType.prototype.notations=new NamedNodeMap(); /** * Read-Only Property publicId * @type String * @class DocumentType * @see DocumentType(); * @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 */DocumentType.prototype.publicId=""; /** * Read-Only Property systemId * @type String * @class DocumentType * @see DocumentType(); * @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 */ DocumentType.prototype.systemId=""; /** * Read-Only Property internalSubset * @type String * @class DocumentType * @see DocumentType(); * @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 */ DocumentType.prototype.internalSubset="";/** * Object Notation() * Notation inherits all of the methods and properties from Node. * @super Node * @constructor * @class Notation * @see Node * @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 Notation(){};Notation.prototype=new Node(); /** * Read-Only Property publicId * @type String * @class Notation * @see Notation(); * @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 */ Notation.prototype.publicId=""; /** * Read-Only Property systemId * @type String * @class Notation * @see Notation(); * @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 */Notation.prototype.systemId="";/** * Object Entity() * Entity inherits all of the methods and properties from Node. * @super Node * @constructor * @class Entity * @see Node * @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 Entity(){}; Entity.prototype=new Node();/** * Read-Only Property publicId * @type String * @class Entity * @see Entity(); * @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 */Entity.prototype.publicId=""; /** * Read-Only Property systemId * @type String * @class Entity * @see Entity(); * @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 */Entity.prototype.systemId=""; /** * Read-Only Property notationName * @type String * @class Entity * @see Entity(); * @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 */ Entity.prototype.notationName=""; /** * Object EntityReference() * EntityReference inherits all of the methods and properties from Node. * @super Node * @constructor * @class EntityReference * @see Node * @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 EntityReference(){};EntityReference.prototype=new Node(); /** * Object ProcessingInstruction() * ProcessingInstruction inherits all of the methods and properties from Node. * @super Node * @constructor * @class ProcessingInstruction * @see Node * @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 ProcessingInstruction(){}; ProcessingInstruction.prototype=new Node(); /** * Read-Only Property target * @type String * @class ProcessingInstruction * @see ProcessingInstruction(); * @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 */ProcessingInstruction.prototype.target=""; /** * Read-Only Property target * @type String * @class ProcessingInstruction * @throws DOMException on setting. * @see ProcessingInstruction(); * @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 */ProcessingInstruction.prototype.data="";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -