5D艺术网首页
商城
|
资讯
|
作品
|
博客
|
教程
|
论坛
登录
注册
加为好友
发短消息
来自:北京
性别:先生
最后登录:2014-08-29
http://veteran.5d.cn/
www.toswf.com
首页
|
新闻
|
话题
|
博客
|
相册
|
艺术作品
|
社交关系
|
留言板
|
社交圈
2005/01/14 | 自定义类的示例如何调用该类的属性和方法
类别(Flash)
|
评论
(0)
|
阅读(253)
|
发表于 17:13
var classname = "main";
//the name of class
var iproperty = "subproperty";
//the name of property
var imethod = "submethod";
//the name of method
main = function () {
};
//
main.subproperty = function() {
var a = arguments;
var len = a.length;
for (i=0; i<len; i++) {
trace(typeof a[i]+":"+a[i]);
}
};
main.prototype.submethod = function() {
var a = arguments;
var len = a.length;
for (i=0; i<len; i++) {
trace(typeof a[i]+":"+a[i]);
}
};
invokemet = function (classname, imethod) {
arguments.splice(0, 2);
var c = eval(classname);
var c=new c;
return c[imethod].apply(null, arguments);
};
invokepro = function (classname, iproperty) {
arguments.splice(0, 2);
return eval(classname)[iproperty].apply(null, arguments);
};
invokepro(classname, iproperty, "v", 12, false);
invokemet(classname, imethod, "me");
0
评论
Comments
日志分类
首页
[185]
Flash
[123]
ColdFusion
[2]
Flex
[2]
FlashMedia
[3]
RIA
[4]
Other
[43]
Python
[0]
Design
[8]