InputElement
InputElement is a DOM API interface representing user input controls in HTML documents. In standard web browsers, the native representation is HTMLInputElement; in some language bindings it is exposed as InputElement. Each instance corresponds to a single input element in the document.
Input elements are form controls that collect user data. They support a type attribute that selects the
Common properties include value (the current content), type, checked (for boolean types), disabled, placeholder, name, required,
Common methods include select() to select the text for text-like inputs, setCustomValidity() for custom validation messages,
InputElement participates in form submission and client-side validation through the browser’s constraint validation API. It is