0

I have made a graph using flash and have exported it to a HTML5 format. Its works fine in IE9,Mozilla Firefox, Google Chrome and most of the major browsers. But I want a work around to make it work in IE 6 and 7. I tried changing the doctype but still it soen't display anything in my IE 6 browser.

HTML

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Untitled</title>
<!--Adobe Edge Runtime-->
    <script type="text/javascript" charset="utf-8" src="sample_edgePreload.js"></script>
    <style>
        .edgeLoad-EDGE-36508108 { display:none; }
    </style>
<!--Adobe Edge Runtime End-->

</head>
<body style="margin:0;padding:0;">
    <div id="Stage" class="EDGE-36508108">
    </div>
</body>
</html>
4

1 回答 1

0

Internet Explorer 6-8 渲染引擎不支持 HTML5,因为它们是建立在人们仍然用棍子狩猎猛犸象的时候,而这是在 HTML5 之前。

要在 Internet Explorer 6-8 中添加对 HTML5 的支持,请考虑使用以下 Google Chrome Frame 安装程序 Javascript:

http://www.chromium.org/developers/how-tos/chrome-frame-getting-started/#TOC-Detecting-Google-Chrome-Frame-and-Prompting-to-Install

于 2012-07-20T13:20:15.893 回答