<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>類式繼承模式#4——共享原型</title> </head> <body> <!-- 共享原型繼承:可複用成員應該轉移到原型中而不是放置在this中。所以,處於繼承的目的,任何值得繼承的東西都應該放置在原型中實現。因此,能夠僅將子對象的原型與父對象的原型設置爲相同便可。這種模式可以簡短而迅速的原型鏈查詢。 缺點:若是在繼承鏈下方的某處存在一個子對象或孫子對象修改了原型,它將會影響到全部的父對象和祖先對象。 --> <script type="text/javascript"> function Parent(name){}; Parent.prototype.say=function(){ console.log(this.name); }; function Child(name){}; function inherit(C,P){ C.prototype=P.prototype; } inherit(Child,Parent) /************************************/ var parent=new Parent(); var child=new Child(); console.log(child) </script> </body> </html>