Vue 鼠标选中文本 @mouseup 结合 window.getSelection().toString()
鼠标选中文本** @mouseup** 结合 window.getSelection().toString()
<h2 @mouseup="handleMouseSelect">Vue鼠标选中文本,使用 mouseup 结合 js</h2>
methods: {
handleMouseSelect() {
let text = window.getSelection().toString()
console.log(text)
}
}
标签:Vue,鼠标,getSelection,mouseup,选中,文本
From: https://www.cnblogs.com/liliuyu/p/16622871.html