Maison  >  Article  >  interface 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
WBOYoriginal
2016-05-16 19:21:311048parcourir

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>

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn