其他分享
首页 > 其他分享> > 访问对象的属性有两种写法?

访问对象的属性有两种写法?

作者:互联网

访问对象的属性有两种写法:
1、用点的方式;
2、用方括号的方式;
当属性名是以变量方式体现,只能用方括号的方式。

<!doctype html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>留言功能</title>
</head>
<body>
</body>
</html>
<script type="text/javascript">

window.onload = function(){
	//访问对象的属性有两种写法:
	//1、用点的方式;
	//2、用方括号的方式;
	//    当属性名是以变量方式体现,只能用方括号的方式。
	
	var arr = [12,23,34];
	console.log(arr.length);//用点的方式,访问对象arr的length属性
	console.log(arr["length"]);//用方括号的方式;访问对象arr的length属性
	
	var temp = "length";
	console.log(arr.temp);//用点的方式,访问对象arr的temp属性,这是不对的
	console.log(arr[temp]);//用方括号的方式;访问对象arr的length(temp变量的值是length)属性
	
}

</script>

标签:方括号,arr,方式,temp,访问,length,写法,属性
来源: https://blog.csdn.net/qq_44930379/article/details/120965356