interface dom.HTMLFormElement
implements HTMLElement
import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/types/index.ts";
const { HTMLFormElement } = dom;
A element in the DOM; it allows access to and in some cases modification of aspects of the form, as well as access to its component elements.
Index Signatures
index: number]: Element
[name: string]: any
[Properties
Sets or retrieves a list of character encodings for input data that must be accepted by the server processing the form.
readonly
elements: HTMLFormControlsCollectionRetrieves a collection, in source order, of all controls in a given form.
Methods
Returns whether a form will validate when it is submitted, without having to submit it.
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLFormElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLFormElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,