在IE中检索选定的文本

时间:2012-10-01 12:55:12

标签: javascript internet-explorer selection getselection

  

可能重复:
  getSelection() not working in IE

我试图获取所选内容,我发现了这个:

   window.getSelection().toString();

它适用于大多数浏览器,除了显而易见的IE。

那么,该怎么办?

2 个答案:

答案 0 :(得分:0)

只有IE9以后才支持window.getSelection()。您可以在早期版本中使用document.selection

答案 1 :(得分:0)

完整的语法是:

document.selection.createRange().text;