1

私は、IE8 ではまったく機能しない Web サイトを持っています。現在、訪問者に IE のアップグレードを促すバナーを表示している Web サイトがあります。もっとやりたい…

私がやりたいのは、「申し訳ありませんが、お使いのブラウザはこのサイトを表示するための要件を満たしていません」などのメッセージに加えて、そのバナーを表示することです。他のページコンテンツをロードしたくありません。

IE の if ステートメントで残りのページを読み込まないと言う方法はありますか?

<!--[if lt IE 8]>
    <div style=' clear: both; text-align:center; position: relative;'>
        <a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode"><img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today." /></a>
    </div>

    -- Here is where I want to say DON'T LOAD ANYTHING ELSE.
    -- Maybe automatically redirect to another blank page?

<![endif]-->
4

4 に答える 4

2

このようなドキュメントの基本構造は次のとおりです。

<body>
<!--[if lte IE 8]
    <div style=' clear: both; text-align:center; position: relative;'>
        <a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode"><img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today." /></a>
    </div>
<![endif]-->
<!--[if gt IE 8] -->
    The rest of the document goes here. 
    All browsers except IE 8 and below parse this.

    ..content...

    Rigth at the end close the conditional.
<!-- <![endif]-->
</body>
</html>

lte IE 8バージョン 8 を除外する必要があることに注意してください。

于 2013-08-07T15:49:21.530 に答える
1
<!--[if lte IE 8]>
    <div style=' clear: both; text-align:center; position: relative;'>
        <a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode"><img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today." /></a>
    </div>
<![endif]-->

<!--[if gt IE 9]-->
    Here's where IE 9+ content goes (as well as content for any other browser).
<!--[endif]-->

以下のJuhanaの提案に従って編集されました。

于 2013-08-07T15:49:20.420 に答える