Javascript仅适用于IE Compat模式

时间:2013-10-29 12:04:37

标签: javascript internet-explorer

请参阅以下javascript。除了IE之外,这适用于所有其他浏览器。在IE Compat模式下必须启用它才能工作。知道为什么吗?我相信它与indexOf有关。

    var styles = iDoc.find("head style[id$='ReportControl_styles']").html();
            if ((styles == undefined) || (styles == '')) {
                iDoc.find('head script').each(function () {
                    var cnt = $(this).html(); 
                    var p1 = cnt.indexOf('ReportStyles":"');
                    if (p1 > 0) {
                        p1 += 15;
                        var p2 = cnt.indexOf('"', p1);
                        styles = cnt.substr(p1, p2 - p1);
                    }
                });
            }
            if (styles == '') { alert("Cannot generate styles, Displaying without styles.."); }
            styles = '<style type="text/css">' + styles + "</style>";

1 个答案:

答案 0 :(得分:0)

目前我已经从页面中删除了doctype并且还添加了所有文档类型。