欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS对象之寻址方式

程序员文章站 2022-05-18 15:14:04
js对象之寻址方式 var person={ firstname : "bill", lastname : "gates", id...

js对象之寻址方式

var person={
firstname : "bill",
lastname  : "gates",
id        :  5566
};

寻址方式:

name=person.lastname;
name=person["lastname"];

例如:


<script> var person={ firstname : "bill", lastname : "gates", id : 5566 }; document.write(person.lastname + "
"); document.write(person["lastname"] + "
"); </script>

结果:

gates
gates