首页 > web前端 > js教程 > 正文

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

WBOY
发布: 2016-05-16 19:21:31
原创
1047 人浏览过

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>

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板