HTMLScriptElement Class
Contents
[
Hide
]HTMLScriptElement class
Script statements. See the SCRIPT element definition in HTML 4.01.
See also the Document object Model (DOM) Level 2 HTML Specification.
public class HTMLScriptElement : HTMLElement
Properties
Name | Description |
---|---|
Attributes { get; } | A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise. |
virtual BaseURI { get; } | Returns the absolute base URL of the document containing the node. |
Charset { get; set; } | The character encoding of the linked resource. See the charset attribute definition in HTML 4.01. |
ChildElementCount { get; } | Returns the current number of element nodes that are children of this element. 0 if this element has no child nodes that are of nodeType 1. |
ChildNodes { get; } | Returns a live NodeList of child nodes of the given element where the first child node is assigned index 0. Child nodes include elements, text and comments. |
Children { get; } | Returns the child elements of current element. |
ClassList { get; } | Returns a live DOMTokenList which contains tokens received from parsing the “class” attribute. |
ClassName { get; set; } | The class attribute of the element. This attribute has been renamed due to conflicts with the “class” keyword exposed by many languages. See the class attribute definition in HTML 4.01. |
Defer { get; set; } | Indicates that the user agent can defer processing of the script. See the defer attribute definition in HTML 4.01. |
Dir { get; set; } | Specifies the base direction of directionally neutral text and the directionality of tables. See the dir attribute definition in HTML 4.01. |
Event { get; set; } | Reserved for future use. |
FirstChild { get; } | Returns the node’s first child in the tree, or null if the node has no children. |
FirstElementChild { get; } | Returns the first child element node of this element. null if this element has no child elements. |
Id { get; set; } | The element’s identifier. See the id attribute definition in HTML 4.01. |
InnerHTML { get; set; } | Returns a fragment of HTML or XML that represents the element’s contents. Can be set, to replace the contents of the element with nodes parsed from the given string. |
Lang { get; set; } | Language code defined in RFC 1766. See the lang attribute definition in HTML 4.01. |
LastChild { get; } | Returns the last child of the node. If its parent is an element, then the child is generally an element node, a text node, or a comment node. It returns null if there are no child elements |
LastElementChild { get; } | Returns the last child element node of this element. null if this element has no child elements. |
override LocalName { get; } | Returns the local part of the qualified name of this node. For nodes of any type other than ELEMENT_NODE and ATTRIBUTE_NODE and nodes created with a DOM Level 1 method, such as Document.createElement(), this is always null. |
override NamespaceURI { get; } | The namespace URI of this node, or null if it is unspecified. |
NextElementSibling { get; } | Returns the next sibling element node of this element. null if this element has no element sibling nodes that come after this one in the document tree. |
NextSibling { get; } | Returns the node immediately following the specified one in their parent’s ChildNodes , or returns null if the specified node is the last child in the parent element. |
override NodeName { get; } | The name of this node, depending on its type. |
override NodeType { get; } | A code representing the type of the underlying object. |
virtual NodeValue { get; set; } | Returns or sets the value of the current node. |
OuterHTML { get; set; } | Returns a fragment of HTML or XML that represents the element and its contents. Can be set, to replace the element with nodes parsed from the given string. |
virtual OwnerDocument { get; } | Returns the top-level document object of the node. |
ParentElement { get; } | Returns the DOM node’s parent Element , or null if the node either has no parent, or its parent isn’t a DOM Element. |
ParentNode { get; } | Returns the parent of the specified node in the DOM tree. |
override Prefix { get; } | The namespace prefix of this node, or null if it is unspecified. When it is defined to be null, setting it has no effect |
PreviousElementSibling { get; } | Returns the previous sibling element node of this element. null if this element has no element sibling nodes that come before this one in the document tree. |
PreviousSibling { get; } | Returns the node immediately preceding the specified one in its parent’s ChildNodes list, or null if the specified node is the first in that list. |
ShadowRoot { get; } | Returns shadowRoot stored on this element or null if it’s closed. |
Src { get; set; } | URI [IETF RFC 2396] designating an external script. See the src attribute definition in HTML 4.01. |
Style { get; } | Represents a style attribute that allows author to directly apply style information to specific element. |
TagName { get; } | The name of the element. |
Text { get; set; } | The script content of the element. |
override TextContent { get; set; } | This attribute returns the text content of this node and its descendants. When it is defined to be null, setting it has no effect. On setting, any possible children this node may have are removed and, if it the new string is not empty or null, replaced by a single Text node containing the string this attribute is set to. |
Title { get; set; } | The element’s advisory title. See the title attribute definition in HTML 4.01. |
Type { get; set; } | The content type of the script language. See the type attribute definition in HTML 4.01. |
Methods
Name | Description |
---|---|
AddEventListener(string, IEventListener) | Sets up a function that will be called whenever the specified event is delivered to the target. |
AddEventListener(string, DOMEventHandler, bool) | Sets up a function that will be called whenever the specified event is delivered to the target. |
AddEventListener(string, IEventListener, bool) | Sets up a function that will be called whenever the specified event is delivered to the target. |
AppendChild(Node) | Adds a node to the end of the list of children of a specified parent node. If the given child is a reference to an existing node in the document, AppendChild moves it from its current position to the new position (there is no requirement to remove the node from its parent node before appending it to some other node). |
AttachShadow(ShadowRootMode) | Creates shadow root and attaches it to current element. |
CloneNode() | Returns a duplicate of the node on which this method was called. |
CloneNode(bool) | Returns a duplicate of the node on which this method was called. Its parameter controls if the subtree contained in a node is also cloned or not. |
DispatchEvent(Event) | Dispatches an Event at the specified IEventTarget , (synchronously) invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with DispatchEvent . |
Dispose() | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. |
GetAttribute(string) | Retrieves an attribute value by name. |
GetAttributeNames() | Returns the attribute names of the element as an Array of strings. If the element has no attributes it returns an empty array. |
GetAttributeNode(string) | Retrieves an attribute node by name. |
GetAttributeNodeNS(string, string) | Retrieves an Attr node by local name and namespace URI. |
GetAttributeNS(string, string) | Retrieves an attribute value by local name and namespace URI. |
GetElementsByClassName(string) | Returns HTMLCollection object containing all the elements within element that have all the classes specified in argument. |
GetElementsByTagName(string) | Returns HTMLCollection object containing all elements with a given tag name, in document order. |
GetElementsByTagNameNS(string, string) | Returns HTMLCollection object containing all elements with a given local name and namespace URI string in document order. |
virtual GetPlatformType() | This method is used to retrieve the ECMAScript object Type. |
HasAttribute(string) | Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise. |
HasAttributeNS(string, string) | Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise. |
HasAttributes() | Returns whether this node (if it is an element) has any attributes |
HasChildNodes() | Returns a boolean value indicating whether the given Node has child nodes or not. |
InsertBefore(Node, Node) | Inserts the node before the existing child node child. If child is null, insert node at the end of the list of children. If child is a DocumentFragment object, all of its children are inserted, in the same order, before child. If the child is already in the tree, it is first removed. |
IsDefaultNamespace(string) | This method checks if the specified namespaceURI is the default namespace or not. |
IsEqualNode(Node) | Tests whether two nodes are equal. This method tests for equality of nodes, not sameness (i.e., whether the two nodes are references to the same object) which can be tested with Node.isSameNode(). All nodes that are the same will also be equal, though the reverse may not be true. |
IsSameNode(Node) | Method is a legacy alias the for the === strict equality operator. That is, it tests whether two nodes are the same (in other words, whether they reference the same object). |
LookupNamespaceURI(string) | Look up the namespace URI associated to the given prefix, starting from this node. |
LookupPrefix(string) | Look up the prefix associated to the given namespace URI, starting from this node. The default namespace declarations are ignored by this method. See Namespace Prefix Lookup for details on the algorithm used by this method. |
Normalize() | Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a “normal” form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are neither adjacent Text nodes nor empty Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer [XPointer] lookups) that depend on a particular document tree structure are to be used. If the parameter “normalize-characters” of the DOMConfiguration object attached to the Node.ownerDocument is true, this method will also fully normalize the characters of the Text nodes. |
QuerySelector(string) | Returns the first Element in document, which match selector |
QuerySelectorAll(string) | Returns a NodeList of all the Elements in document, which match selector |
Remove() | Removes this instance. |
RemoveAttribute(string) | Removes an attribute by name. |
RemoveAttributeNode(Attr) | Removes the specified attribute node. |
RemoveAttributeNS(string, string) | Removes an attribute by local name and namespace URI. |
RemoveChild(Node) | Removes a child node from the DOM and returns the removed node. |
RemoveEventListener(string, IEventListener) | This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed. |
RemoveEventListener(string, DOMEventHandler, bool) | This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed. |
RemoveEventListener(string, IEventListener, bool) | This method allows the removal of event listeners from the event target. If an IEventListener is removed from an EventTarget while it is processing an event, it will not be triggered by the current actions. Event Listeners can never be invoked after being removed. |
ReplaceChild(Node, Node) | Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node. If newChild is a DocumentFragment object, oldChild is replaced by all of the DocumentFragment children, which are inserted in the same order. If the newChild is already in the tree, it is first removed. |
SetAttribute(string, string) | Adds a new attribute. If an attribute with that name is already present in the element, its value is changed to be that of the value parameter |
SetAttributeNode(Attr) | Adds a new attribute node. If an attribute with that name (nodeName) is already present in the element, it is replaced by the new one. |
SetAttributeNodeNS(Attr) | Adds a new attribute. If an attribute with that local name and that namespace URI is already present in the element, it is replaced by the new one. |
SetAttributeNS(string, string, string) | Adds a new attribute. If an attribute with the same local name and namespace URI is already present on the element, its prefix is changed to be the prefix part of the qualifiedName, and its value is changed to be the value parameter. |
ToggleAttribute(string) | If force is not given, “toggles” qualifiedName, removing it if it is present and adding it if it is not present. If force is true, adds qualifiedName. If force is false, removes qualifiedName. |
ToggleAttribute(string, bool) | If force is not given, “toggles” qualifiedName, removing it if it is present and adding it if it is not present. If force is true, adds qualifiedName. If force is false, removes qualifiedName. |
override ToString() | Returns a String that represents this instance. |
Events
Name | Description |
---|---|
event OnAbort | Gets or sets event handler for OnAbort event. |
event OnBlur | Gets or sets event handler for OnBlur event. |
event OnCancel | Gets or sets event handler for OnCancel event. |
event OnCanplay | Gets or sets event handler for OnCanplay event. |
event OnCanPlayThrough | Gets or sets event handler for OnCanPlayThrough event. |
event OnChange | Gets or sets event handler for OnChange event. |
event OnClick | Gets or sets event handler for OnClick event. |
event OnCueChange | Gets or sets event handler for OnCueChange event. |
event OnDblClick | Gets or sets event handler for OnDblClick event. |
event OnDurationChange | Gets or sets event handler for OnDurationChange event. |
event OnEmptied | Gets or sets event handler for OnEmptied event. |
event OnEnded | Gets or sets event handler for OnEnded event. |
event OnError | Gets or sets event handler for OnError event. |
event OnFocus | Gets or sets event handler for OnFocus event. |
event OnInput | Gets or sets event handler for OnInput event. |
event OnInvalid | Gets or sets event handler for OnInvalid event. |
event OnKeyDown | Gets or sets event handler for OnKeyDown event. |
event OnKeyPress | Gets or sets event handler for OnKeyPress event. |
event OnKeyUp | Gets or sets event handler for OnKeyUp event. |
event OnLoad | Gets or sets event handler for OnLoad event. |
event OnLoadedData | Gets or sets event handler for OnLoadedData event. |
event OnLoadedMetadata | Gets or sets event handler for OnLoadedMetadata event. |
event OnLoadStart | Gets or sets event handler for OnLoadStart event. |
event OnMouseDown | Gets or sets event handler for OnMouseDown event. |
event OnMouseEnter | Gets or sets event handler for OnMouseEnter event. |
event OnMouseLeave | Gets or sets event handler for OnMouseLeave event. |
event OnMouseMove | Gets or sets event handler for OnMouseMove event. |
event OnMouseOut | Gets or sets event handler for OnMouseOut event. |
event OnMouseOver | Gets or sets event handler for OnMouseOver event. |
event OnMouseUp | Gets or sets event handler for OnMouseUp event. |
event OnMouseWheel | Gets or sets event handler for OnMouseWheel event. |
event OnPause | Gets or sets event handler for OnPause event. |
event OnPlay | Gets or sets event handler for OnPlay event. |
event OnPlaying | Gets or sets event handler for OnPlaying event. |
event OnProgress | Gets or sets event handler for OnProgress event. |
event OnRateChange | Gets or sets event handler for OnRateChange event. |
event OnReset | Gets or sets event handler for OnReset event. |
event OnResize | Gets or sets event handler for OnResize event. |
event OnScroll | Gets or sets event handler for OnScroll event. |
event OnSeeked | Gets or sets event handler for OnSeeked event. |
event OnSeeking | Gets or sets event handler for OnSeeking event. |
event OnSelect | Gets or sets event handler for OnSelect event. |
event OnShow | Gets or sets event handler for OnShow event. |
event OnStalled | Gets or sets event handler for OnStalled event. |
event OnSubmit | Gets or sets event handler for OnSubmit event. |
event OnSuspend | Gets or sets event handler for OnSuspend event. |
event OnTimeUpdate | Gets or sets event handler for OnTimeUpdate event. |
event OnToggle | Gets or sets event handler for OnToggle event. |
event OnVolumeChange | Gets or sets event handler for OnVolumeChange event. |
event OnWaiting | Gets or sets event handler for OnWaiting event. |
See Also
- class HTMLElement
- namespace Aspose.Html
- assembly Aspose.HTML