在 Thunderbird 的消息编辑器中,我需要使用 javascript 来查看用户是否选择了任何文本,并可选择获取该选定的文本。
我试过这个:
var thisselection = window.getSelection();
alert("selection = " + thisselection.toString() );
但即使选择了文本,它也表示没有选择任何内容。我确定我不明白发生了什么。 我正在阅读 MDN。
我也试过:
var editor = gMsgCompose.editor;
var thisselection = editor.getSelection.toString();
但后来我得到一个错误,说getSelection
is not a function to be used with editor
.