This page was translated from English by the community.Learn more and join the MDN Web Docs community.
HTMLElement
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since июль 2015 г..
* Some parts of this feature may have varying levels of support.
ИнтерфейсHTMLElement представляет собой любой элементHTML. Некоторые элементы напрямую используют этот интерфейс, другие - через промежуточный интерфейс.
In this article
Свойства
Наследует свойства родителя,Element, и реализует их черезGlobalEventHandlers иTouchEventHandlers.
HTMLElement.accessKey— ключ доступаЭта строковая переменная
DOMStringотображает ключ доступа, сопоставленный элементуElement.HTMLElement.accessKeyLabelТолько для чтенияВозвращает
DOMString, содержащий назначенный ключ доступа элемента.HTMLElement.contentEditableЯвляется
DOMString, где значение" true "означает, что элемент доступен для редактирования, а значение" false " означает, что это не так.HTMLElement.isContentEditableТолько для чтенияВозвращает
Boolean, который указывает, можно ли редактировать содержимое элемента.HTMLElement.contextMenuЯвляется
HTMLMenuElement, представляющим контекстное меню, связанное с элементом. Может быть nullHTMLElement.datasetТолько для чтения — набор данныхВозвращает
domstringmap, который позволяет получить доступ к чтению и записи атрибутов пользовательских данных элемента (data-*) .HTMLElement.dirIs a
DOMString, reflecting thedirglobal attribute, representing the directionality of the element. Possible values are"ltr","rtl", and"auto".HTMLElement.draggableIs a
Booleanindicating if the element can be dragged.HTMLElement.dropzoneТолько для чтенияReturns a
DOMSettableTokenListreflecting thedropzoneglobal attribute and describing the behavior of the element regarding a drop operation.HTMLElement.hiddenIs a
Booleanindicating if the element is hidden or not.HTMLElement.itemScopeЭкспериментальная возможностьIs a
Boolean…HTMLElement.itemTypeТолько для чтенияЭкспериментальная возможностьReturns a
DOMSettableTokenList…HTMLElement.itemIdЭкспериментальная возможностьIs a
DOMString…HTMLElement.itemRefТолько для чтенияЭкспериментальная возможностьReturns a
DOMSettableTokenList…HTMLElement.itemPropТолько для чтенияЭкспериментальная возможностьReturns a
DOMSettableTokenList…HTMLElement.itemValueЭкспериментальная возможностьReturns an
Object…HTMLElement.langIs a
DOMStringrepresenting the language of an element's attributes, text, and element contents.HTMLElement.offsetHeightТолько для чтенияЭкспериментальная возможностьReturns a
doublecontaining the height of an element, relative to the layout.HTMLElement.offsetLeftТолько для чтенияЭкспериментальная возможностьReturns a
double, the distance from this element's left border to itsoffsetParent's left border.HTMLElement.offsetParentТолько для чтенияЭкспериментальная возможностьReturns an
Elementthat is the element from which all offset calculations are currently computed.HTMLElement.offsetTopТолько для чтенияЭкспериментальная возможностьReturns a
double, the distance from this element's top border to itsoffsetParent's top border.HTMLElement.offsetWidthТолько для чтенияЭкспериментальная возможностьReturns a
doublecontaining the width of an element, relative to the layout.HTMLElement.propertiesТолько для чтенияЭкспериментальная возможностьReturns an
HTMLPropertiesCollection…HTMLElement.spellcheckIs a
Booleanthat controlsspell-checking. It is present on all HTML elements, though it hasn't an effect on all of them.HTMLElement.styleIs
CSSStyleDeclaration, an object representing the declarations of an element's style attributes.HTMLElement.tabIndexIs a
longrepresenting the position of the element in the tabbing order.HTMLElement.titleIs a
DOMStringcontaining the text that appears in a popup box when mouse is over the element.HTMLElement.translateЭкспериментальная возможностьIs a
Boolean
Event handlers
Most events properties, of the formonXYZ, are defined on theGlobalEventHandlers orTouchEventHandlers, implemented byHTMLElement. A few more are specific toHTMLElement.
HTMLElement.oncopyНе стандартноReturns the event handling code for the
copyevent (Firefox bug 280959).HTMLElement.oncutНе стандартноReturns the event handling code for the
cutevent (Firefox bug 280959).HTMLElement.onpasteНе стандартноReturns the event handling code for the
pasteevent (Firefox bug 280959).TouchEventHandlers.ontouchstartНе стандартноReturns the event handling code for the
touchstartevent.TouchEventHandlers.ontouchendНе стандартноReturns the event handling code for the
touchendevent.TouchEventHandlers.ontouchmoveНе стандартноReturns the event handling code for the
touchmoveevent.TouchEventHandlers.ontouchenterНе стандартноReturns the event handling code for the
touchenterevent.TouchEventHandlers.ontouchleaveНе стандартноReturns the event handling code for the
touchleaveevent.TouchEventHandlers.ontouchcancelНе стандартноReturns the event handling code for the
touchcancelevent.
Methods
Inherits methods from its parent,Element.
HTMLElement.blur()Removes keyboard focus from the currently focused element.
HTMLElement.click()Sends a mouse click event to the element.
HTMLElement.focus()Makes the element the current keyboard focus.
HTMLElement.forceSpellCheck()Экспериментальная возможностьMakes the spell checker runs on the element.
Спецификации
| Specification |
|---|
| HTML> # htmlelement> |