HTMLInputElement:select 事件

当选择了一些文本时,将触发select事件。

语法

在诸如addEventListener()之类的 方法中使用事件名称,或设置事件处理程序属性。

js
addEventListener("select", (event) => {});

onselect = (event) => {};

事件类型

一个通用的Event

示例

选择记录器

html
<input value="Try selecting some text in this element." />
<p id="log"></p>
js
function logSelection(event) {
  const log = document.getElementById("log");
  const selection = event.target.value.substring(
    event.target.selectionStart,
    event.target.selectionEnd,
  );
  log.textContent = `You selected: ${selection}`;
}

const input = document.querySelector("input");
input.addEventListener("select", logSelection);

onselect 等效项

您还可以使用onselect属性设置事件处理程序

js
input.onselect = logSelection;

规范

规范
HTML 标准
# event-select
HTML 标准
# handler-onselect

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。