js基础05--Object对象
标签:
JavaScript
创建 JavaScript 对象
通过 JavaScript,您能够定义并创建自己的对象。
创建新对象有两种不同的方法:
定义并创建对象的实例
使用函数来定义对象,然后创建新的对象实例
创建直接的实例
这个例子创建了对象的一个新实例,并向其添加了四个属性:
方式一:
window.=function () { var person = new Object(); person.firstname="Bill"; person.lastname="Gates"; person.age=56;person.eyecolor="blue";// document.write()想页面中输出信息 document.write(person.firstname + " is " + person.age + " years old."); }
方式二:
var person={ firstname:"John", lastname:"Doe", age:50, eyecolor:"blue" };
使用对象构造器
本例使用函数来构造对象:
function person(firstname,lastname,age,eyecolor){ this.firstname=firstname; this.lastname=lastname; this.age=age; this.eyecolor=eyecolor; } var myFather=new person("Bill","Gates",56,"blue"); document.write(myFather.firstname + " is " + myFather.age + " years old.");
如有不足请多多指教!希望给您带来帮助!
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦