首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > JavaScript > JavaScript类的代表

JavaScript类的代表

  • 资源大小:2.90 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:1次
  • 资源积分:1积分
  • 标      签: javascript OOP

资 源 简 介

A JavaScript Class which simulates delegates in other more strongly type-oriented languages. I will write the instructions as soon as possible, meantime I copy-paste my code here: ``` //create a Delegate object var del1 = new Delegate({ firstFunction : function () { alert("First function..."); }, secondFunction : function () { alert("Second function..."); } }, { name : "first_delegate", initRun : true, errorReport : "alert" }); //create a second Delegate object var del2 = new Delegate({ thirdFunction : function () { alert("First function..."); }, fourthFunction : function () { alert("Second function..."); } }, { name : "second_delegate", errorReport : "alert" }); var del3 = del2.clone({ name : "cloned_delegate", initRun : true }); var del4 = del1.clone() del4.setCollection({ del4function1 : function () { alert("del4function1"); }, del4fu

相 关 资 源

您 可 能 感 兴 趣 的

同 类 别 推 荐

VIP VIP