按对象方式调用javascript的例子

 页面:

<script type="text/javascript" src="js/test.js"></script>

。。。。

<body onload="new myTest();" >

以对象方式调用需要使用 new 操作符,test.js的内容:

 

{                        //使用大括号表示以类的形式调用myTest
    function myTest()
    {
   
        this.addActions1();
    };

 alert('will process here....');//will execute this row

 myTest.prototype.addActions1=function()
    {
        alert('hi2');
    };
}

 

//页面中用new myTest()调用会执行myTest()中的addActions1(),另外在function中可以使用this来引用函数。

 

posted @ 2009-11-03 11:19  ajuanabc  阅读(124)  评论(0编辑  收藏  举报