我想从我的网页上的一个文本区挑选用户。 我有一个环境菜单,用户可以在正确筛选时使用。 这是我从IE8的文稿中检索部分内容的代码。
var textComponent = document.getElementById( myTextArea );
var selectedText;
// IE version
if (document.selection != undefined)
{
textComponent.focus();
selectedText= document.selection.createRange();
alert(sel.text);
}
Now I notice that before allowing the blocked content (i.e. the Javascript) I can select a text in the text area and on right click it does not get deselected. But, when I allow the script, on right clicking the text that I selected gets deselected. Which is why I cannot retrieve the content.
我搜索了这个网站,但找不到任何解决办法。 谁能告诉我问题是什么?