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

于小通0

于小通0

2016-02-19 10:55

下面图老师小编跟大家分享一个简单易学的In Javascript Class, how to call the prototype method.(three method)教程,get新技能是需要行动的,喜欢的朋友赶紧收藏起来学习下吧!
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 LANGUAGE="JavaScript"
!--
function myClass(instanceName)
{
 this.instanceName = instanceName;
 this.instance = this;
 return this;
};
myClass.prototype.toAlert=function()
{
 eval(this.instanceName).callback(); // the first method to call prototype function.
 this.instance.callback(); // the second method to call prototype function.

 // the third method to call prototype function.
 document.write("a href='javascript:void(0);' onclick='" + this.instanceName + ".callback();'instance call prototype function./a")
};
myClass.prototype.callback=function()
{
 alert("blueDestiny, never-online");
};
var a = new myClass("a");
a.toAlert();
//--
/SCRIPT
展开更多 50%)
分享

猜你喜欢

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

Web开发
In Javascript Class, how to call the prototype method.(three method)

use Assembly to call a method

电脑网络
use Assembly to call a method

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

Edit Method

电脑网络
Edit Method

AddNew Method Example

电脑网络
AddNew Method Example

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

Edit Method Example

电脑网络
Edit Method Example

存取方法(Access method)

编程语言 网络编程
存取方法(Access method)

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

U盘文件不小心被删了怎么办

U盘文件不小心被删了怎么办

Android源码学习之观察者模式应用及优点介绍

Android源码学习之观察者模式应用及优点介绍
下拉加载更多内容 ↓