我在我的一个网站中使用了一个名为“Facelift 1.2”的 javascript,虽然该脚本在 Safari 3、4b 和 Opera、OmniWeb 和 Firefox 中有效,但它不适用于任何 IE 版本。但即使在工作浏览器中,我也会收到以下错误,我无法破译。
也许在适当的时候——在 Javascript 方面有更多经验——我将能够做到,但现在我想我会问你们中的一些人,在 SO。
以下是我在 IETester 测试 Internet Explorer 6,7 和 8 页面时出现的错误弹出窗口:
以下来自 Firefox 3.0.6 中的 Firebug 控制台:
该网站是:http ://www.457cc.co.nz/index.php如果它可以帮助您看到实际提到的问题。
我还查找了第 620 行对应的是: “第 76 行”是:
this.isCraptastic = (typeof document.body.style.maxHeight=='undefined');
这是这段代码的一部分(取自 flir.js):
// either (options Object, fstyle FLIRStyle Object) or (fstyle FLIRStyle Object)
,init: function(options, fstyle) { // or options for flir style
if(this.isFStyle(options)) { // (fstyle FLIRStyle Object)
this.defaultStyle = options;
}else { // [options Object, fstyle FLIRStyle Object]
if(typeof options != 'undefined')
this.loadOptions(options);
if(typeof fstyle == 'undefined') {
this.defaultStyle = new FLIRStyle();
}else {
if(this.isFStyle(fstyle))
this.defaultStyle = fstyle;
else
this.defaultStyle = new FLIRStyle(fstyle);
}
}
this.calcDPI();
if(this.options.findEmbededFonts)
this.discoverEmbededFonts();
this.isIE = (navigator.userAgent.toLowerCase().indexOf('msie')>-1 && navigator.userAgent.toLowerCase().indexOf('opera')<0);
this.isCraptastic = (typeof document.body.style.maxHeight=='undefined');
if(this.isIE) {
this.flirIERepObj = [];
this.flirIEHovEls = [];
this.flirIEHovStyles = [];
}
}
整个脚本也可以在我的服务器上找到:http ://www.457cc.co.nz/facelift-1.2/flir.js
我只是不知道从哪里开始寻找错误,特别是因为它只影响 IE 但在其余部分有效。也许你们有一个想法。我很想听听他们的意见。
谢谢阅读。詹尼斯
PS:这是 Opera 的错误控制台报告的内容:
JavaScript - http://www.457cc.co.nz/index.php
Inline script thread
Error:
name: TypeError
message: Statement on line 620: Cannot convert undefined or null to Object
Backtrace:
Line 620 of linked script http://www.457cc.co.nz/facelift-1.2/flir.js
document.body.appendChild(test);
Line 70 of linked script http://www.457cc.co.nz/facelift-1.2/flir.js
this.calcDPI();
Line 2 of inline#1 script in http://www.457cc.co.nz/index.php
FLIR.init();
stacktrace: n/a; see 'opera:config#UserPrefs|Exceptions Have Stacktrace'