Returns the computed style of this element.
Gets the value of css name.
Sets the value of css name. Note:
Sets a set of css name-value pairs
Removes ll children nodes and unbinds all their events binding with the on method.
Removes self or all children nodes of special selector and unbinds all their events binding with the on method.
Gets the selected or inputed values of form elements such as input, select and textarea. When called on a non-form element, it returns undefined. When the value of this element is an empty string, it returns ''.
When this element is a select-multiple (i.e., a select element with the multiple attribute set), it returns an array containing the value of each selected option. If no options are selected, it returns an empty array.
When this element is a checkbox, it returns the selected values of all same-name elements. When all checkboxes are not checked, it returns an empty array.
When this element is a radio, it returns the selected value of all same-name elements. When all radio are not checked, it returns null.
Sets the form element's value such as input, select and textarea.
When this element is a checkbox, it will select some same-name elements.
When this element is a radio, it will select one same-name element.
Add methods for Dom object