IE 8 Script438错误

问题描述 投票:0回答:1

再次是Internet Explorer 8 ...

我一直在寻找解决SCRIPT438错误的解决方案(SCRIPT438:对象不支持此属性或方法,但似乎没有一个适合我。

我正在使用swfobject.js,F12控制台上的错误报告说,第435行字符5,此行有错误:

el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';

该行是此功能的一部分:

function createSWF(attObj, parObj, id) {
    var r, el = getElementById(id);
    if (ua.wk && ua.wk < 312) { return r; }
    if (el) {
    if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content
        attObj.id = id;
    }
    if (ua.ie && ua.win) { // Internet Explorer + the HTML object element + W3C DOM methods do not combine: fall back to outerHTML
        var att = "";
        for (var i in attObj) {
            if (attObj[i] != Object.prototype[i]) { // filter out prototype additions from other potential libraries
                if (i.toLowerCase() == "data") {
                    parObj.movie = attObj[i];
                }
                else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
                    att += ' class="' + attObj[i] + '"';
                }
                else if (i.toLowerCase() != "classid") {
                    att += ' ' + i + '="' + attObj[i] + '"';
                }
            }
        }
        var par = "";
        for (var j in parObj) {
            if (parObj[j] != Object.prototype[j]) { // filter out prototype additions from other potential libraries
                par += '<param name="' + j + '" value="' + parObj[j] + '" />';
            }
        }
        el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';
        objIdArr[objIdArr.length] = attObj.id; // stored to fix object 'leaks' on unload (dynamic publishing only)
        r = getElementById(attObj.id);  
    }

因此,'el'不应被定义

这是我将所有JavaScript都添加到HTML的方式

<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>

<script src="js/smoothscroll.js"></script>
<script src="js/jquery.placeholder.min.js"></script>
<script src="js/javascript.js"></script>
<script src="js/swfobject.js"></script>
<script src="js/player.js"></script>

我没有两次包含jquery,jquery.placeholder是我用来解决源代码中ie9的占位符问题的插件,可以在这里找到https://github.com/mathiasbynens/jquery-placeholder

我必须在周一之前解决这个问题,真的可以使用一些帮助

javascript html internet-explorer-8 swfobject
1个回答
0
投票

从实际意义上讲,如果您对项目使用编译,则可以考虑安装polyfill软件包

npm i --save core-js

yarn add core-js

然后在项目的入口点顶部添加

import 'core-js'

目前core-js polyfill library是提供跨浏览器支持的最简单方法

© www.soinside.com 2019 - 2024. All rights reserved.