构造函数里面的函数
function Person(){ this.skill=function(){ console.log("会跳") } } var dog = new Person() dog.skill()