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

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

最佳答案

您是否可以使用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);
    }
}

07-24 13:35