js 类
Posted aladam
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 类相关的知识,希望对你有一定的参考价值。
---恢复内容开始---
<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8" /> <title>Document</title> </head> <body> <script> People.prototype ={ x:100,y:200,z:function(){alert(300);} } ; //上一级 function People(name,age){ this.name= name; this.age = age; } //类 var people = new People("张三",28); //构造函数 people.z(); //alert(people.);
构造函数
以上是关于js 类的主要内容,如果未能解决你的问题,请参考以下文章