JavaScript Prototype

  function Person(name) { this.name = name; this.showMe = function () { alert(this.name); } }; Person.prototype.from = function ()
相關文章
相關標籤/搜索