<script> function Person() { //通过原型添加的方法 Person.prototype.say=function() { alert("hello"); }
//当前对象添加的方法 this.say=function() { alert("hello1"); } }
//这两者有什么不一样,这里都可以调用 var p=new Person(); p.say(); </script>