js 繼承(1)

js 如何實現繼承呢? 下面是一個簡單的繼承demo Js代碼   console.clear();   //child 繼承 parent   var extend=function(child,parent)   {     child.prototype=new parent();        }   function A(){     this.name="A";     this.sa
相關文章
相關標籤/搜索