Movatterモバイル変換


[0]ホーム

URL:


  1. Веб-технологии для разработчиков
  2. Интерфейсы веб API
  3. HTMLElement

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

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. Некоторые элементы напрямую используют этот интерфейс, другие - через промежуточный интерфейс.

EventTarget Node Element HTMLElement

Свойства

Наследует свойства родителя,Element, и реализует их черезGlobalEventHandlers иTouchEventHandlers.

HTMLElement.accessKey — ключ доступа

Эта строковая переменнаяDOMString отображает ключ доступа, сопоставленный элементуElement.

HTMLElement.accessKeyLabelТолько для чтения

ВозвращаетDOMString, содержащий назначенный ключ доступа элемента.

HTMLElement.contentEditable

ЯвляетсяDOMString, где значение" true "означает, что элемент доступен для редактирования, а значение" false " означает, что это не так.

HTMLElement.isContentEditableТолько для чтения

ВозвращаетBoolean, который указывает, можно ли редактировать содержимое элемента.

HTMLElement.contextMenu

ЯвляетсяHTMLMenuElement, представляющим контекстное меню, связанное с элементом. Может быть null

HTMLElement.datasetТолько для чтения — набор данных

Возвращаетdomstringmap, который позволяет получить доступ к чтению и записи атрибутов пользовательских данных элемента (data-*) .

HTMLElement.dir

Is aDOMString, reflecting thedir global attribute, representing the directionality of the element. Possible values are"ltr","rtl", and"auto".

HTMLElement.draggable

Is aBoolean indicating if the element can be dragged.

HTMLElement.dropzoneТолько для чтения

Returns aDOMSettableTokenList reflecting thedropzone global attribute and describing the behavior of the element regarding a drop operation.

HTMLElement.hidden

Is aBoolean indicating if the element is hidden or not.

HTMLElement.itemScopeЭкспериментальная возможность

Is aBoolean

HTMLElement.itemTypeТолько для чтенияЭкспериментальная возможность

Returns aDOMSettableTokenList

HTMLElement.itemIdЭкспериментальная возможность

Is aDOMString

HTMLElement.itemRefТолько для чтенияЭкспериментальная возможность

Returns aDOMSettableTokenList

HTMLElement.itemPropТолько для чтенияЭкспериментальная возможность

Returns aDOMSettableTokenList

HTMLElement.itemValueЭкспериментальная возможность

Returns anObject

HTMLElement.lang

Is aDOMString representing the language of an element's attributes, text, and element contents.

HTMLElement.offsetHeightТолько для чтенияЭкспериментальная возможность

Returns adouble containing the height of an element, relative to the layout.

HTMLElement.offsetLeftТолько для чтенияЭкспериментальная возможность

Returns adouble, the distance from this element's left border to itsoffsetParent's left border.

HTMLElement.offsetParentТолько для чтенияЭкспериментальная возможность

Returns anElement that is the element from which all offset calculations are currently computed.

HTMLElement.offsetTopТолько для чтенияЭкспериментальная возможность

Returns adouble, the distance from this element's top border to itsoffsetParent's top border.

HTMLElement.offsetWidthТолько для чтенияЭкспериментальная возможность

Returns adouble containing the width of an element, relative to the layout.

HTMLElement.propertiesТолько для чтенияЭкспериментальная возможность

Returns anHTMLPropertiesCollection

HTMLElement.spellcheck

Is aBoolean that controlsspell-checking. It is present on all HTML elements, though it hasn't an effect on all of them.

HTMLElement.style

IsCSSStyleDeclaration, an object representing the declarations of an element's style attributes.

HTMLElement.tabIndex

Is along representing the position of the element in the tabbing order.

HTMLElement.title

Is aDOMString containing the text that appears in a popup box when mouse is over the element.

HTMLElement.translateЭкспериментальная возможность

Is aBoolean

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 thecopy event (Firefox bug 280959).

HTMLElement.oncutНе стандартно

Returns the event handling code for thecut event (Firefox bug 280959).

HTMLElement.onpasteНе стандартно

Returns the event handling code for thepaste event (Firefox bug 280959).

TouchEventHandlers.ontouchstartНе стандартно

Returns the event handling code for thetouchstart event.

TouchEventHandlers.ontouchendНе стандартно

Returns the event handling code for thetouchend event.

TouchEventHandlers.ontouchmoveНе стандартно

Returns the event handling code for thetouchmove event.

TouchEventHandlers.ontouchenterНе стандартно

Returns the event handling code for thetouchenter event.

TouchEventHandlers.ontouchleaveНе стандартно

Returns the event handling code for thetouchleave event.

TouchEventHandlers.ontouchcancelНе стандартно

Returns the event handling code for thetouchcancel event.

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

Совместимость с браузерами

Смотрите также

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp