• javascript面向对象编程(一)



    <script type="text/javascript">
            var test = {

                numA: 10,

                objB: {},

                arrC: [],

                init: function(){
                    alert(this.numA);
                },

                sayHi: function(name){
                    alert("hello " + name);
                },

                sayHelloWorld: function(){
                    this.sayHi("world");
                },

                get: function(){
                    
                    var self = this;
                    this.objB.alertNumA = function(){
                        alert(self.numA);
                    }

                }

            };

            var TestFunc = function(){
                
                alert("i'm testFunc");

            };

            TestFunc.prototype = {
                extFunc: function(){
                    alert("this extend function's numB is " + this.numB);
                },
                numB: 10
            };

            test.init();
            test.sayHi("qingming");
            test.sayHelloWorld();
            test.get();
            test.objB.alertNumA();

            var testFunc =  new TestFunc();
            testFunc.extFunc();
        </script>

  • 相关阅读:
    Mongodb创建自增序列
    在nagios上安装mongodb_check监控mongodb
    MongoDB分片
    Mondb remove justOne
    Mongos cannot do slaveOk queries when primary is down
    MongoDB聚合操作
    MongoDB副本集(三)
    MongoDB副本集(二)
    CMD命令
    计算机网络实用技术第一章随笔
  • 原文地址:https://www.cnblogs.com/myself/p/1764700.html
Copyright © 2020-2023  润新知