如何从iframe中获取所选文本(在IE上工作)

时间:2010-09-01 03:53:28

标签: javascript internet-explorer select iframe

如何从iframe中获取所选文本(在IE上工作)

1 个答案:

答案 0 :(得分:3)

以下内容适用于所有主流浏览器:

function getIframeSelectionText(iframe) {
    var win, doc = iframe.contentDocument;
    if (doc) {
        win = doc.defaultView;
    } else {
        win = iframe.contentWindow;
        doc = win.document;
    }

    if (win.getSelection) {
        return win.getSelection().toString();
    } else if (doc.selection && doc.selection.createRange) {
        return doc.selection.createRange().text;
    }
}

var iframe = document.getElementById("your_iframe");
alert( getIframeSelectionText(iframe) );