JS 建立对象的方法


Posted in Javascript onApril 21, 2007

Objects are useful to organize information.
对于组织信息来讲对象是非常有用的 

JavaScript Objects
JS对象
Earlier in this tutorial we have seen that JavaScript has several built-in objects, like String, Date, Array, and more. In addition to these built-in objects, you can also create your own.
在教程的前面部分我们已经看过JS有一些内置的对象,像String,Date,Array和更多一些。除此之外我们可以建立属于自己的对象。

An object is just a special kind of data, with a collection of properties and methods.
对象是特殊的数据,有着相关的一系列属性和方法。

Let's illustrate with an example: A person is an object. Properties are the values associated with the object. The persons' properties include name, height, weight, age, skin tone, eye color, etc. All persons have these properties, but the values of those properties will differ from person to person. Objects also have methods. Methods are the actions that can be performed on objects. The persons' methods could be eat(), sleep(), work(), play(), etc.
让我们说明一个例子:一个人为一个对象。属性就是与对象关联的值。人的属性包含名字,身高,体重,年龄,肤色,眼睛的颜色等等。所有人都有这些属性,但是值却可能人与人都不同。对象还有方法。方法就是对象的动作行为。人的方法就可以是eat()[吃],sleep()[睡觉],work()[工作]等等。

Properties属性
The syntax for accessing a property of an object is:
关联一个对象的属性语法为:

objName.propName 

You can add properties to an object by simply giving it a value. Assume that the personObj already exists - you can give it properties named firstname, lastname, age, and eyecolor as follows:
你可以通过赋值来给对象添加属性。假设personObj已经存在 - 你可以给对象添加姓和名以及下面的年纪和眼睛颜色:

personObj.firstname="John"

personObj.lastname="Doe"
personObj.age=30
personObj.eyecolor="blue"document.write(personObj.firstname) 

The code above will generate the following output:
上面的代码就会输出:

John 

Methods方法
An object can also contain methods.
一个对象还可以包括方法

You can call a method with the following syntax:
你可以用下面的语法来调用一个方法:

objName.methodName() 

Note: Parameters required for the method can be passed between the parentheses.
方法所需要的参数写在括号之间

To call a method called sleep() for the personObj:
为personObj对象调用一个sleep()方法

personObj.sleep() 

--------------------------------------------------------------------------------

Creating Your Own Objects
建立你自己的对象
There are different ways to create a new object:
建立新的对象有两种不同的方法

1. Create a direct instance of an object
直接建立

The following code creates an instance of an object and adds four properties to it:
下面的代码可以直接建立一个对象并给它加上四个属性:

personObj=new Object()
personObj.firstname="John"

personObj.lastname="Doe"
personObj.age=50
personObj.eyecolor="blue" 

Adding a method to the personObj is also simple. The following code adds a method called eat() to the personObj:
给对象建立一个方法也十分的简单。下面的代码就加了一个eat()方法

personObj.eat=eat 

2. Create a template of an object
建立一个对象模块

The template defines the structure of an object:
模块定义对象的构架

function person(firstname,lastname,age,eyecolor)
{
this.firstname=firstname
this.lastname=lastname
this.age=age
this.eyecolor=eyecolor

Notice that the template is just a function. Inside the function you need to assign things to this.propertyName. The reason for all the "this" stuff in is that you're going to have more than one person at a time (which person you're dealing with must be clear). That's what "this" is: the instance of the object at hand.
注意模块只是一个函数,函数里面你需要给this.propertyName分配东西。所有都是"this"的原因是你接下来会一下子有不止一个person(是哪个person你必须清楚)。

Once you have the template, you can create new instances of the object, like this:
一旦你有了模块,你就可以这样直接建立新的对象了:

myFather=new person("John","Doe",50,"blue")
myMother=new person("Sally","Rally",48,"green") 

You can also add some methods to the person object. This is also done inside the template:
你也可以加一些方法给person对象,这也可以在模块里完成:

function person(firstname,lastname,age,eyecolor)
{
this.firstname=firstname
this.lastname=lastname
this.age=age
this.eyecolor=eyecolorthis.newlastname=newlastname

Note that methods are just functions attached to objects. Then we will have to write the newlastname() function:
注意,这个方法只是对象的附加函数,接下来我们将必须写入newlastname()函数

function newlastname(new_lastname)
{
this.lastname=new_lastname

The newlastname() function defines the person's new last name and assigns that to the person. JavaScript knows which person you're talking about by using "this.". So, now you can write: myMother.newlastname("Doe").
newlastname()函数定义了person的新last name并分配给了person。使用"this"的话JS会明白你在描述哪个person。所以现在你可以写:myMother.newlastname("Doe") 

Javascript 相关文章推荐
页面定时刷新(1秒刷新一次)
Nov 22 Javascript
javascript 原型链维护和继承详解
Nov 26 Javascript
jquery地址栏链接与a标签链接匹配之特效代码总结
Aug 24 Javascript
利用Javascript仿Excel的数据透视分析功能
Sep 07 Javascript
node.js将MongoDB数据同步到MySQL的步骤
Dec 10 Javascript
Vue实现一个无限加载列表功能
Nov 13 Javascript
小程序怎样让wx.navigateBack更好用的方法实现
Nov 01 Javascript
浅析TypeScript 命名空间
Mar 19 Javascript
Vue页面手动刷新,实现导航栏激活项还原到初始状态
Aug 06 Javascript
vue使用svg文件补充-svg放大缩小操作(使用d3.js)
Sep 22 Javascript
jQuery-App输入框实现实时搜索
Nov 19 jQuery
vue递归实现树形组件
Jul 15 Vue.js
如何做到打开一个页面,过几分钟自动转到另一页面
Apr 20 #Javascript
用javascript将数据库中的TEXT类型数据动态赋值到TEXTAREA中
Apr 20 #Javascript
在textarea中显示html页面的javascript代码
Apr 20 #Javascript
textarea的value是html文件源代码,存成html文件的代码
Apr 20 #Javascript
在textarea中屏蔽js的某个function的javascript代码
Apr 20 #Javascript
用javascript实现改变TEXTAREA滚动条和按钮的颜色,以及怎样让滚动条变得扁平
Apr 20 #Javascript
让textarea控件的滚动条怎是位与最下方
Apr 20 #Javascript
You might like
php 字符过滤类,用于过滤各类用户输入的数据
2009/05/27 PHP
PHP访问数据库集群的方法小结
2016/03/14 PHP
Laravel5权限管理方法详解
2016/07/26 PHP
php设计模式之观察者模式实例详解【星际争霸游戏案例】
2020/03/30 PHP
增强的 JavaScript 的 trim 函数的代码
2007/08/13 Javascript
javascript 程序库的比较(一)之DOM功能
2010/04/07 Javascript
仅IE支持clearAttributes/mergeAttributes方法使用介绍
2012/05/04 Javascript
Javascript数组的排序 sort()方法和reverse()方法
2012/06/04 Javascript
基于Unit PNG Fix.js有时候在ie6下不正常的解决办法
2013/06/26 Javascript
javascript trim函数在IE下不能用的解决方法
2014/09/12 Javascript
javascript中slice(),splice(),split(),substring(),substr()使用方法
2015/03/13 Javascript
再谈Javascript中的基本类型和引用类型(推荐)
2016/07/01 Javascript
js给table赋值的实例代码
2016/10/13 Javascript
JS实现一次性弹窗的方法【刷新后不弹出】
2016/12/26 Javascript
详解webpack之图片引入-增强的file-loader:url-loader
2018/10/08 Javascript
详解js创建对象的几种方法及继承
2019/04/12 Javascript
Vue项目从webpack3.x升级webpack4不完全指南
2019/04/28 Javascript
Vue 前端实现登陆拦截及axios 拦截器的使用
2019/07/17 Javascript
vue项目使用.env文件配置全局环境变量的方法
2019/10/24 Javascript
vue-cli3.X快速创建项目的方法步骤
2019/11/14 Javascript
pycharm 使用心得(三)Hello world!
2014/06/05 Python
深入理解Javascript中的this关键字
2015/03/27 Python
Python fileinput模块使用实例
2015/05/28 Python
Python学习教程之常用的内置函数大全
2017/07/14 Python
Python序列循环移位的3种方法推荐
2018/04/09 Python
python钉钉机器人运维脚本监控实例
2019/02/20 Python
Pytorch 实现权重初始化
2019/12/31 Python
Pytorch训练过程出现nan的解决方式
2020/01/02 Python
Python生成器传参数及返回值原理解析
2020/07/22 Python
澳大利亚在线百货商店:Real Smart
2017/08/13 全球购物
自我鉴定范文200字
2013/10/02 职场文书
认识深刻的检讨书
2014/02/16 职场文书
应届生求职自荐信
2014/07/04 职场文书
中学学校门卫岗位职责
2014/08/15 职场文书
校园游戏活动新闻稿
2014/10/15 职场文书
Vue3 Composition API的使用简介
2021/03/29 Vue.js