我正在尝试为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
(这是正确的)。
我的代码有什么问题?
谢谢!