それはIE9で、私のために完全に正常に動作しています:
<!--[if lt IE 8]>
<!--This will alert anyone using IE8 and below-->
<script>
alert("Please Update Your Browser");
</script>
<![endif]-->
ます。また、リダイレクトすることができます
は、私はあなたのページへの条件付きコメントを追加することをお勧めしますそれら:
<!--[if lt IE 8]>
<!--This will redirect anyone using IE8 and below-->
meta HTTP-EQUIV="REFRESH" content="0; url=http://windows.microsoft.com/en-us/internet-explorer/products/ie/home">
<![endif]-->
あるいは、もちろん、両方:
<!--[if lt IE 8]>
<!--This will alert & redirect anyone using IE8 and below-->
<script>
alert("Please Update Your Browser");
</script>
meta HTTP-EQUIV="REFRESH" content="0; url=http://windows.microsoft.com/en-us/internet-explorer/products/ie/home">
<![endif]-->
これは完全に動作しています –
私のマシンで動作します。 – Stilgar