javascript对象学习笔记

多的不说,直接上练习例子:

1.对象的属性、创建、构造函数、方法

<html xmlns="http://www.w3.org/1999/xhtml">

<body>

<script type="text/javascript">

//函数:用作对象的方法
function Rectangle_area() {return this.width * this.height;}
function Rectangle_perimeter() {return this.width * 2 + this.height * 2;}
function Rectangle_set_size(w, h) { this.width = w; this.height = h;}
//object_Rectangle 的构造函数
function object_Rectangle(w, h) 
{
	//初始化对象的属性
	this.width = w;
	this.height = h;
	//定义对象的方法
	this.area = Rectangle_area;
	this.perimeter = Rectangle_perimeter;
	this.set_size = Rectangle_set_size;
}
//创建object_Rectangle对象,调用它的方法
var r = new object_Rectangle(3, 4);
var a = r.area();
document.write(a);
</script>

</body>
</html>


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。