Microsoft Edge不支持“createTextRange”(Win10 build 10162)

时间:2015-07-15 03:27:18

标签: javascript microsoft-edge

我正在尝试在页面上找到一些文字,例如:

function crossBrowserFind() {
    var str = "Hell";
    if (window.find) {        // Firefox, Google Chrome, Safari
        found = window.find(str);
    }else {
        if (document.body.createTextRange) { // Internet Explorer, Opera before version 10.5
            var textRange = document.body.createTextRange();
            if (textRange.findText) {   // Internet Explorer   		
                found = textRange.findText(str);
                if (found) {
                    textRange.select();
                }
            }
        }
    }   			
}

但在Microsoft Edge(win10 build 10162)中运行时,不支持名为“createTextRange”的函数。

有人知道如何在Microsoft Edge中找到该文本吗?

0 个答案:

没有答案