SRC
IE 8 以下のユーザー向けに iFrameの属性を変更しようとしています。
これが私のコードです:
<script>
var i_am_old_ie = false;
<!--[if lte IE 8]>
i_am_old_ie = true;
<![endif]-->
</script>
<script type="text/javascript">
$(document).ready(function() {
if(i_am_old_ie) {
$("#shop").attr("src","shopping_cart/browser_support.html");
} else {
$("#shop").attr("src","shopping_cart/index.html");
}
});
</script>
それが IE であることを検出しますが、それでもすべての IE ユーザーを に送信しますshopping_cart/browser_support.html
。IE 9 を使用していても、そこに送られます。7でも8でも同じです。
しかし、IEを使用していない他のすべてのユーザーを送信しますshopping_cart/index.html
(これは正しいです)。
私のコードで何が問題になっていますか?
ありがとうございました!