Skip to content

JS 文本选择监听

Published: at 04:57 PMSuggest Changes
document.addEventListener("selectionchange", () => {
  console.log(document.getSelection());
});

document.onselectionchange = () => {
  console.log(document.getSelection());
};
// document.getSelection() 选中文本信息,document.getSelection().toString() 则返回选中文本
const selection = document.getSelection()
const oRange = selection.getRangeAt(0)
const oRect = oRange.getBoundingClientRect()
const text = selection.toString()

转载


Previous Post
JavaScript 背景动画插件 particles.js
Next Post
Vue 获取 Element UI 中的 Textarea