我正在使用以下函数来获取选定的文本,它在所有主要浏览器中运行良好,但在 IE 9 之前的版本中无法正常运行!
function getSelected() {
var t = '';
if (window.getSelection) {
t = window.getSelection();
} else if (document.getSelection) {
t = document.getSelection();
t = t.toString();
} else if (document.selection) {
t = document.selection.createRange();
t = t.text;
}
return t;
}
var txt = getSelected();
这里的问题是 IE 在版本 9 之前它不会在变量“txt”中存储任何文本