我在Reactjs中有一个组件。这有 p 标记。里面有文字。
我希望当用户双击任何单词时,它应该触发一个函数,我在其中获取所选文本,以便我可以将该单词保存在数组中。
请帮忙。
答案 0 :(得分:2)
function getSelectionText() {
var text = "";
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != "Control") {
text = document.selection.createRange().text;
}
return text;
}
这适用于所有浏览器。将它附加到p标签的mouseup。