<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>构造对象</title>
<script type="text/javascript">
/*构造函数其实就是一个普通的函数,只有后面加new的时候,才会作为函数原型和new的实例关联起来,js里面只有实例,没有类的概念*/
function student(name,age){
this.name=name;
this.age=age;
this.run=function(){
alert(this.name+"在跑");
}
}
//通过原型的prototype方法可以指向所有student对象,让所有这些实例共享hello方法
student.prototype.hello = function () {
alert('Hello, ' + this.name + '!');
};
var c=new student("zs",20);
console.log(c.name);
console.log(c.age);
c.run();
c.hello();
</script>
</head>
<body>
</body>
</html>
js构造函数和对象
最新推荐文章于 2024-09-16 16:54:46 发布