首页  >  文章  >  web前端  >  In Javascript Class, how to call the prototype method.(three method)_javascript技巧

In Javascript Class, how to call the prototype method.(three method)_javascript技巧

WBOY
WBOY原创
2016-05-16 19:21:311048浏览

1、Using Javascript eval Method。
2、using a veriables save object "this" reference.
3、in innerHTML, we can using String to pass the prototype Method。

e.g.

<script> <BR><!-- <BR>function myClass(instanceName) <BR>{ <BR> this.instanceName = instanceName; <BR> this.instance = this; <BR> return this; <BR>}; <BR>myClass.prototype.toAlert=function() <BR>{ <BR> eval(this.instanceName).callback(); // the first method to call prototype function. <BR> this.instance.callback(); // the second method to call prototype function. <br><br> // the third method to call prototype function. <BR> document.write("<a href='javascript:void(0);' onclick='" + this.instanceName + ".callback();'>instance call prototype function.") <BR>}; <BR>myClass.prototype.callback=function() <BR>{ <BR> alert("blueDestiny, never-online"); <BR>}; <BR>var a = new myClass("a"); <BR>a.toAlert(); <BR>//--> <BR></script>

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn