1

IE8 中的哪些变化使得在 javascript 中检测 InfoCard Selector 支持停止工作,除非将 IE8 置于兼容模式?

更重要的是,检测 InfoCard 支持存在的新 JavaScript 代码是什么?

这是通过 IE7 运行的脚本,包括在某些情况下带有插件的 FireFox:

function AreCardsSupported() {
    var IEVer = -1;
    if (navigator.appName == 'Microsoft Internet Explorer') {
        if (new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})").exec(navigator.userAgent) != null) {
            IEVer = parseFloat(RegExp.$1);
        }
    }

    // Look for IE 7+. 
    if (IEVer >= 7) {
        var embed = document.createElement("object");
        embed.setAttribute("type", "application/x-informationcard");

        return "" + embed.issuerPolicy != "undefined" && embed.isInstalled;
    }

    // not IE (any version)
    if (IEVer < 0 && navigator.mimeTypes && navigator.mimeTypes.length) {
        // check to see if there is a mimeType handler. 
        x = navigator.mimeTypes['application/x-informationcard'];
        if (x && x.enabledPlugin) {
            return true;
        }

        // check for the IdentitySelector event handler is there. 
        if (document.addEventListener) {
            var event = document.createEvent("Events");
            event.initEvent("IdentitySelectorAvailable", true, true);
            top.dispatchEvent(event);

            if (top.IdentitySelectorAvailable == true) {
                return true;
            }
        }
    }

    return false;
}
4

1 回答 1

1

我从 IE8 团队得到了一个带外的答案:

改变

embed.setAttribute("type", "application/x-informationcard");

embed.type = "application/x-informationcard";
于 2009-03-26T04:08:46.913 回答