将方法原型化为子对象?
我正在寻找将方法原型化为子对象的方法。我的意思是:
function object() {
function subObject() {
}
}
object.subObject.prototype.testMethod = function() {
alert("test");
};
然而,这似乎行不通。关于如何完成这样的任务有什么想法吗?
I'm looking to prototype a method into a sub-object. Here is what I mean:
function object() {
function subObject() {
}
}
object.subObject.prototype.testMethod = function() {
alert("test");
};
However, this seems to not work. Any idea on how to go about completing such a task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建原始函数的属性:
请注意,这两个“类”不会以任何方式相关;任一类的实例都不会链接到另一个类的实例。
这仅对命名空间有用。
You need to create a property of the original function:
Note that the two "classes" will not be related in any way; instances of either class will have no link to instances of the other class.
This is only useful for namespacing.