我可以在 Internet Explorer 中使用此代码获取选定的文本:
var selectedText;
// IE version
if (document.selection != undefined)
{
textComponent.focus();
var sel = document.selection.createRange();
selectedText = sel.text;
}
但是,如何删除 TEXTAREA 中的选定文本,例如,在 Google Chrome 和 Internet Explorer 中使用 JavaScript?