将方法原型化为子对象?

发布于 2024-12-21 05:34:05 字数 227 浏览 1 评论 0原文

我正在寻找将方法原型化为子对象的方法。我的意思是:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一页 2024-12-28 05:34:05

您需要创建原始函数的属性:

MyObject.SubObject = function(...) { ... };

请注意,这两个“类”不会以任何方式相关;任一类的实例都不会链接到另一个类的实例。
这仅对命名空间有用。

You need to create a property of the original function:

MyObject.SubObject = 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文