什么版本的IE使用窗口[objectName]而不是window.document [objectName]?

时间:2011-05-31 17:43:42

标签: javascript flex internet-explorer callback externalinterface

我正在尝试使用Javascript回调来嵌入我的页面中的Flex应用程序。通过一些示例,我看到这段代码用于获取Flex应用程序的引用:

// Get the reference:
function thisFlexApp(appName) {
    if(navigator.appName.indexOf ('Microsoft') != -1) {
        return window[appName];
    }
    else {
        return window.document[appName];
    }
}

// Use it:
var someVariable = thisFlexApp('NameOfFlexApp').callbackMethod();

我使用了那种方法,但是使用IE9我得到错误,表明“thisFlexApp”调用无法正常工作。事实证明window.document [appName]在IE9中工作,但是窗口[appName]没有。由于我不希望我的政府客户使用IE9,我想知道这种方法的IE版本实际上会起作用的是什么版本?是否有另一个测试更好地使用而不是上面假设所有版本的IE以某种方式工作?提前谢谢。

1 个答案:

答案 0 :(得分:5)

请勿检查浏览器版本,检查浏览器的功能。您只需检查window[appName]是否存在,如果存在,请使用它。

function thisFlexApp(appName) {
    if(window[appName]) {
        return window[appName];
    }
    else {
        return window.document[appName];
    }
}

甚至更短:

function thisFlexApp(appName) {
    return window[appName] || window.document[appName];
}