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]