首页 > 代码库 > js中的方法调用

js中的方法调用

<script>    var m = {com: { sao: {citi:{}}}};    m.com.sao.citi.init = new function() {        this.name = "roboce";        this.callname = function() {            console.log(this.name);        };                this.haha = function() {            callname(); // this.callname();        };    };        function callname() {        console.log("mmmm");    }        m.com.sao.citi.init.haha();</script>

 

js中的方法调用