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

js function 博客分类: javascript prototype

程序员文章站 2024-02-22 08:49:58
...

 

       var fun = function() {
            alert(this)
        };

        fun();

        var funx = new fun();

        var funxx = {};
        funxx.__proto__ = fun.prototype;
        fun.call(funxx);
 
相关标签: prototype