当前位置 : 主页 > 大数据 > 区块链 >

使用prototype.js时,IE8中的“对象预期”Javascript错误

来源:互联网 收集:自由互联 发布时间:2021-06-22
function icPageInit(){ $("icImgDiv" + icAlternate()).setOpacity(0); return true;}window.onload = icPageInit; 这段Javascript代码在Firefox和Chrome中运行良好,但在Internet Explorer 8中出现错误“Object Expected”失败.IE8表示
function icPageInit()
{
    $("icImgDiv" + icAlternate()).setOpacity(0);
    return true;
}
window.onload = icPageInit;

这段Javascript代码在Firefox和Chrome中运行良好,但在Internet Explorer 8中出现错误“Object Expected”失败.IE8表示错误发生在上面代码的第3行.

有谁知道为什么会这样,和/或如何让它工作?

弄清楚了.

如果在脚本标记的language属性中使用“javascript”以外的任何内容,则会导致Internet Explorer扼流圈.

我在语言属性中使用附加到javascript的版本号,这导致IE不加载prototype.js.

网友评论