原型链继承
function People(){ this.name = 'people';}function Man(){ this.name = 'man';}Man.prototype = new People();