Home > Web Front-end > JS Tutorial > body text

javascript father-son communication_javascript skills

WBOY
Release: 2016-05-16 19:12:59
Original
1067 people have browsed it


var parent = 
{
    //
    say:function ()
    {
        //
        alert("parent_say");
    },
    alert:function ()
    {
        //
        alert("parent");
        this.say();
    }
};
//


parent.addChild("child",
    {
        //
        say:function ()
        {
            //
            alert("child_say");
        },
        alert:function ()
        {
            //
            alert("child");
            this.parent.say();
        }
    }
);
//parent.child.alert();
//parent.alert();
var c = parent.child;
c.alert();





Object.prototype.addChild=function(oName, obj)
{
    eval("var p=this." oName "= new Object()");
    this[oName]=obj;
    this[oName].parent=this;
}

效果演示:


[Ctrl A 全选 注:
如需引入外部Js需刷新才能执行]
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template