欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js继承注意的地方

程序员文章站 2022-04-24 14:32:37
...
    function Father() {
        this.LastName = "Xu",
           this.GetLastName = function () {
               alert(this.LastName);
           }
    }

    var Mother = {
        Address: "XXXXXXX",
        GetAddress: function () {
            alert(this.Address);
        }
    }

    function Son() {
        this.FirstName = "Eason";
    }
    Son.prototype = new Father();
    Son.prototype.__proto__ = Mother;
    var s = new Son();
    s.GetLastName();
    s.GetAddress();
    alert(s.LastName);

如果Son不是function 是对象 就不能这样些,而父类是function的时候是怎么写,要注意区分

posted on 2012-06-08 13:03 放逐忧伤 阅读(...) 评论(...) 编辑 收藏

转载于:https://www.cnblogs.com/navy235/archive/2012/06/08/2541629.html