HTMLLabelElement
Gives access to properties specific to elements. It inherits methods and properties from the base HTMLElement interface.
interface HTMLLabelElement extends HTMLElement {
readonly control: HTMLElement | null;
readonly form: HTMLFormElement | null;
htmlFor: string;
addEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void;addEventListener(
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
): void;removeEventListener<K extends keyof HTMLElementEventMap>(
type: K,
listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void;removeEventListener(
}type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions,
): void;var HTMLLabelElement: {
prototype: HTMLLabelElement;
new (): HTMLLabelElement;
};§Extends
§Properties
§
readonly control: HTMLElement | null
[src]Returns the form control that is associated with this element.
§
readonly form: HTMLFormElement | null
[src]Retrieves a reference to the form that the object is embedded in.
§Methods
§
addEventListener<K extends keyof HTMLElementEventMap>(
[src]type: K,
listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void§
addEventListener(
[src]type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
): void§
removeEventListener<K extends keyof HTMLElementEventMap>(
[src]type: K,
listener: (this: HTMLLabelElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void§
removeEventListener(
[src]type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions,
): void