Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

GlobalEventHandlers.onselect

Перевод не завершен. Пожалуйста, помогите перевести эту статью с английского.

Обработчик события select окна браузера.

Синтаксис

window.onselect = funcRef;
  • funcRef - функция

Пример

<html>
<head>

<title>onselect test</title>

<style type="text/css">
.text1 { border: 2px solid red; }
</style>

<script type="text/javascript">

window.onselect = selectText;

function selectText()
{
 alert("select event detected!");
}
</script>
</head>

<body>
<textarea class="text1" cols="30" rows="3">
Highlight some of this text
with the mouse pointer
to fire the onselect event.
</textarea>
</body>
</html>

Замечание

Событие select происходит только, когда текст выделяют в поле input с type='text' или в поле textarea. Событие происходит только после того, как текст будет выделен.

Спецификация

Specification Status Comment
WHATWG HTML Living Standard
Определение 'onselect' в этой спецификации.
Живой стандарт  

Метки документа и участники

 Внесли вклад в эту страницу: Tanya_Agisheva
 Обновлялась последний раз: Tanya_Agisheva,