标签: javascript internet-explorer selection getselection
可能重复: getSelection() not working in IE
我试图获取所选内容,我发现了这个:
window.getSelection().toString();
它适用于大多数浏览器,除了显而易见的IE。
那么,该怎么办?
答案 0 :(得分:0)
只有IE9以后才支持window.getSelection()。您可以在早期版本中使用document.selection。
window.getSelection()
document.selection
答案 1 :(得分:0)
完整的语法是:
document.selection.createRange().text;