0

希望将 IE 浏览器指向静态图像,而不是我在 medio.com 主页上创建的对象。

这是运行对象的 header_block php 文件:

<!--Start of Product Banner-->

<object data=http://prep.medio.com/dash/graphless.html width="450" height="350"> <embed src=http://prep.medio.com/dash/graphless.html id=sgraph width="450" height="350"> </embed> Error: Embedded data could not be displayed. 

<?php
        if (@$data['banner_position'] == "right")
        {
            include("block_header_banner_text.php");
            include("block_header_banner_media.php");

        } else {
            include("block_header_banner_media.php");
            include("block_header_banner_text.php");
        }
    ?>
</div>

我基本上想说:

如果 Chrome、Safari、Opera、Firefox:显示对象。否则:不显示对象。或者反之亦然,如果这更有意义的话。

IE 9 和 10 可以很好地显示对象。它真的是 IE 8 和更低版本。

谢谢!

4

1 回答 1

0

您是否尝试过仅用<object>MS 注释块注释掉?

<!--[if !IE]> <-->
    <object>...</object>
<!--> <![endif]-->

or

<!--[if gte IE 9]> <-->
    <object>...</object>
<!--> <![endif]-->
于 2013-02-25T20:48:07.613 回答