gpt4 book ai didi

javascript - 为什么 For..in(loop) 总是破坏它所在的函数?

转载 作者:行者123 更新时间:2023-12-03 07:57:01 25 4
gpt4 key购买 nike

黑兹。
大家好..

我正在学习 Web 开发:https://www.w3schools.com/ .

我在这里做了一个非常简单的功课:https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_tabs

```
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {font-family: Arial;}

/* Style the tab */
.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}
</style>
</head>
<body>

<h2>Tabs</h2>
<p>Click on the buttons inside the tabbed menu:</p>

<div class="tab">
<button class="tablinks" onclick="openCity(event, 'London')">London</button>
<button class="tablinks" onclick="openCity(event, 'Paris')">Paris</button>
<button class="tablinks" onclick="openCity(event, 'Tokyo')">Tokyo</button>
</div>

<div id="London" class="tabcontent">
<h3>London</h3>
<p>London is the capital city of England.</p>
</div>

<div id="Paris" class="tabcontent">
<h3>Paris</h3>
<p>Paris is the capital of France.</p>
</div>

<div id="Tokyo" class="tabcontent">
<h3>Tokyo</h3>
<p>Tokyo is the capital of Japan.</p>
</div>

<script>
function openCity(evt, cityName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " active";
}
</script>

</body>
</html>
```

但是....当我尝试将传统的 for 循环交换为 for..in 循环时。它不工作?

前任。
for (i in tabcontent) {
tabcontent[i].style.display = "none";
}

很多次后,我试图让它工作。我发现第一个 for..in 循环后面的所有语句都将被跳过 !!!????
这意味着函数将在 for..in 循环后自动中断。第一个 for..in 循环正常工作,但之后的其余语句只是跳过。此时函数中断?

如果有人知道这个问题,请帮助我理解它。 X__X

最佳答案

您看到的“自动中断”是未捕获的异常中断执行 -
您应该打开浏览器的控制台以查看发生的任何 Uncaught Error 。

这种变化产生了

Uncaught TypeError: Cannot set property 'display' of undefined
at openCity (<anonymous>:6:33)
at HTMLButtonElement.onclick (tryit.asp?filename=tryhow_js_tabs:1)

自从 for..in循环对象的属性,而不是你想象的数组元素,和 i最终(由 console.log(i) 证明)为 0 , 1 , 2 ,最后是 length , 和 tabcontent.length没有 style属性,所以相当于
tabcontent.length.style.display = ...

自然会失败。

关于javascript - 为什么 For..in(loop) 总是破坏它所在的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59533348/

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