gpt4 book ai didi

javascript - IE 中的全局变量异常

转载 作者:搜寻专家 更新时间:2023-11-01 04:33:01 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Why does IE nuke window.ABC variables?

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
</head>
<body>
<script>
if(typeof q === "undefined"){
window.q = {test: "test"};
}
alert("1="+q)
</script>
<script>
alert("2="+q)
if(typeof q === "undefined"){
var q = {};
}
alert("3="+q.test)
</script>
<script>
alert("4="+q.test)
</script>
</body>

在IE8中,结果是

1=[object Object]
2=undefined
3=undefined
4=undefined

第二个脚本似乎覆盖了windowq

如果我将第一个 script 的代码更改为 window.q = {test: "test"};q={test:"test ",结果会和其他浏览器一样。

这是 IE 中的错误吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com