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 相关文章推荐
javascript 装载iframe子页面,自适应高度
Mar 20 Javascript
jquery获取ASP.NET服务器端控件dropdownlist和radiobuttonlist生成客户端HTML标签后的value和text值
Jun 28 Javascript
jQuery+ajax实现顶一下,踩一下效果
Jul 17 Javascript
BOM与DOM的区别分析
Oct 26 Javascript
JavaScript如何实现组合列表框中元素移动效果
Mar 01 Javascript
JavaScript函数中关于valueOf和toString的理解
Jun 14 Javascript
JS检测页面中哪个HTML标签触发点击事件的方法
Jun 17 Javascript
jquery Form轻松实现文件上传
May 24 jQuery
关于JavaScript语句后面的分号问题
Dec 07 Javascript
微信小程序之事件交互操作实例分析
Dec 03 Javascript
详解在vue-cli3.0中自定css、js和图片的打包路径
Aug 26 Javascript
在Vue 中获取下拉框的文本及选项值操作
Aug 13 Javascript
如何做到打开一个页面,过几分钟自动转到另一页面
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编程风格规范分享
2014/01/15 PHP
浅析ThinkPHP中execute和query方法的区别
2014/06/13 PHP
PHP中使用OpenSSL生成证书及加密解密
2017/02/05 PHP
PHP面向对象程序设计之接口的继承定义与用法详解
2018/12/20 PHP
javascript onmouseout 解决办法
2010/07/17 Javascript
Javascript在IE下设置innerHTML时出现未知的运行时错误的解决方法
2011/01/12 Javascript
Draggable Elements 元素拖拽功能实现代码
2011/03/30 Javascript
jquery对元素拖动排序示例
2014/01/16 Javascript
nodejs批量修改文件编码格式
2015/01/22 NodeJs
jQuery实现流动虚线框的方法
2015/01/29 Javascript
IE下支持文本框和密码框placeholder效果的JQuery插件分享
2015/01/31 Javascript
基于js对象,操作属性、方法详解
2016/08/11 Javascript
将JSON字符串转换成Map对象的方法
2016/11/30 Javascript
在一个页面重复使用一个js函数的方法详解
2016/12/26 Javascript
jquery pagination分页插件使用详解(后台struts2)
2017/01/22 Javascript
jquery实现拖动效果(代码分享)
2017/01/25 Javascript
几行js代码实现自适应
2017/02/24 Javascript
微信小程序 五星评价功能的实现
2017/03/09 Javascript
vue项目打包之后背景样式丢失的解决方案
2019/01/17 Javascript
JS 逻辑判断不要只知道用 if-else 和 switch条件判断(小技巧)
2020/05/27 Javascript
使用setup.py安装python包和卸载python包的方法
2013/11/27 Python
用python结合jieba和wordcloud实现词云效果
2017/09/05 Python
Python实现PS滤镜的旋转模糊功能示例
2018/01/20 Python
python随机生成大小写字母数字混合密码(仅20行代码)
2020/02/01 Python
python GUI库图形界面开发之PyQt5树形结构控件QTreeWidget详细使用方法与实例
2020/03/02 Python
HTML5实现一个能够移动的小坦克示例代码
2013/09/02 HTML / CSS
英国轻奢珠宝品牌:Astley Clarke
2016/12/18 全球购物
南京青奥会口号
2014/06/12 职场文书
反邪教标语
2014/06/23 职场文书
放飞梦想演讲稿800字
2014/08/26 职场文书
项目战略合作意向书
2015/05/08 职场文书
2015迎新晚会开场白
2015/07/17 职场文书
2016教师学习党章心得体会
2016/01/15 职场文书
使用HTML+Css+transform实现3D导航栏的示例代码
2021/03/31 HTML / CSS
PHP新手指南
2021/04/01 PHP
Python提取PDF指定内容并生成新文件
2021/06/09 Python