是否可以通过实现任一调用或应用来实现对象的调用,或者以其他方式?例如.:
- var obj = {};
- obj.call = function (context,arg1,arg2,...) {
- ...
- };
- ...
- obj (a,b);
- var obj = {};
- obj.call = function (context,arg1,arg2,...) {
- ...
- };
- ...
- obj (a,b);