1

我有一个似乎无法解决的问题
我有这个网站http//:makeandsee.com/shadow.html

它从单个 youtube 用户那里提取所有 youtube 视频并显示它们,这在除 IE 之外的所有浏览器中都可以正常工作。在 IE 中它会抛出一个错误,说 swfobject 没有定义,这是没有意义的,因为所有其他浏览器都没有问题,有什么建议吗?

4

1 回答 1

0

您是否可以访问 Javascript 中的 swfobject?而不是做这样的事情?

function getFlashMovieObject(movieName){
    if (window.document[movieName]){
        return window.document[movieName];
    }
    if (navigator.appName.indexOf("Microsoft Internet")==-1){
        if (document.embeds && document.embeds[movieName])
            return document.embeds[movieName];
    }
    else{
        return document.getElementById(movieName);
    }
}
于 2012-04-06T12:47:19.183 回答