2

我正在使用以下函数来获取选定的文本,它在所有主要浏览器中运行良好,但在 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”中存储任何文本

4

1 回答 1

0

演示:http: //jsfiddle.net/ytJ35/

以下内容取自如何使用 javascript 获取选定的 html 文本?

此 javascript 函数适用于 IE7 及更高版本:

function getSelected() {
    var text = "";
    if (window.getSelection
    && window.getSelection().toString()
    && $(window.getSelection()).attr('type') != "Caret") {
        text = window.getSelection();
        return text;
    }
    else if (document.getSelection
    && document.getSelection().toString()
    && $(document.getSelection()).attr('type') != "Caret") {
        text = document.getSelection();
        return text;
    }
    else {
        var selection = document.selection && document.selection.createRange();

        if (!(typeof selection === "undefined")
        && selection.text
        && selection.text.toString()) {
            text = selection.text;
            return text;
        }
    }

    return false;
}

在 chrome、IE10、IE6、IE7 中测试

于 2013-01-29T06:50:19.667 回答