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

javascript方法的定义

程序员文章站 2021-12-17 21:59:12
...

//定义构造函数
function Rectangle(w,h){
this.width = w;
this.height= h;
}

//使用前面定义的构造函数创建一个新的Rectangle对象
var page = new Rectangle(8.5, 11);
//该函数使用了关键字this,这样它就不必自己调用自己,
//而成为了定义width属性和height属性的对象的方法
function compute_area(a, b){
this.width2 = a;
this.height2 = b;
alert("a * b = " + a * b);
return this.width * this.height;
}
//通过把函数赋予对象的属性/来定义一个方法
page.area = compute_area;
//代码调用新方法,需要两个实际参数
var a = page.area(1, 2);
alert(a);
相关标签: JavaScript