要了解javascript继承首先我们了解什么是继承
继承:继承是指一个对象直接使用另一对象的属性和方法。
所及这是我们要达到的效果
先写一个父类
function Person(name,sex){
this.name = name;
this.sex = sex;
}
Person.prototype.showName(){
alert(this.name);
Person.prototype.showSex(){
alert(this.sex);