使用jquery.swfobject安装Flash时显示备用内容

时间:2010-06-02 23:12:34

标签: jquery html flash swfobject

如何在没有Flash的浏览器中使用jquery.swfobject插件显示备用HTML?我无法找到任何文档或示例来说明如何执行此操作。

以下是我的代码片段:

    <script type="text/javascript" language="Javascript" src="jquery.1.4.2.js"></script>
    <script type="text/javascript" language="Javascript" src="jquery.swfobject.1-0-9.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){

            $("#contentflash").flash({
                swf: "myswf.swf",               
                width: "100%",
                height: "100%",
                params: {
                    wmode: "opaque"
                }
            });

        });             
    </script>
</head>
<body>
<div id="contentflash"></div>

2 个答案:

答案 0 :(得分:3)

尝试在

中放置一些内容
<div id="contentflash"></div>

<div id="contentflash">No flash here man !</div>

$("#contentflash").flash 

替换被定位的id #contentflash。

以下是example的完整性。

答案 1 :(得分:0)

this example。仅在启用闪存时才会替换该框的内容。但是,这并不会删除“go install flash”消息。