gpt4 book ai didi

javascript - 使用 for in 循环对象

转载 作者:行者123 更新时间:2023-12-03 11:30:15 24 4
gpt4 key购买 nike

有人可以帮助我吗?卡住了一段时间,我需要做的就是打印出我的对象的属性,有人知道为什么这不起作用吗?

<!DOCTYPE   html>
<html>
<head>
<script type="text/javascript">
function person(name, dateOfBirth, nationality){
this.name = name;
this.dateOfBirth = dateOfBirth;
this.nationality = nationality;
}

var mark = new person("mark oshea",25,"irish");
var text = "";
for(x in mark) {
text += mark[x];
}


</script>
</body>
</html>

最佳答案

for ... in 循环将循环遍历给定数组/对象的所有属性。您尝试使用属性(您真正想要的)访问您的对象。

在您的情况下,如果您想要这些属性,则 text += x; 应该是您正在寻找的内容。

如果你想获取对象的值,你可以使用 forEach 例如:

mark.forEach( function(value){
text += value;
});

关于javascript - 使用 for in 循环对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26764929/

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