如何在我的类中扩展 mootools 中的 Dom 元素

发布于 2024-08-26 03:17:52 字数 182 浏览 6 评论 0原文

我想创建一个类,例如 MyDiv,它继承自原始 DOM DIV 元素。 稍后在我的代码中,我想这样使用它:

$('a-container').adopt(new MyDiv('my own set of params'));

我缺少执行此操作的确切语法。

I want to create a Class, say MyDiv, which inherits from the original DOM DIV element.
Later in my code I would like to use it like that:

$('a-container').adopt(new MyDiv('my own set of params'));

I am missing the exact syntax to do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

2024-09-02 03:17:52

您不一定需要扩展特定的元素类型。如果您提供 toElement 方法,则可以定义在这种情况下采用的内容:

var MyDiv = new Class({
    initialize: function() {
        this.realDiv = new Element('div',{id:'foo'});
    },
    toElement: function() {
        return this.realDiv;
    }
});

You don't necessarily need to extend a specific Element type. If you provide a toElement method, you can define what'll be adopted in such a case:

var MyDiv = new Class({
    initialize: function() {
        this.realDiv = new Element('div',{id:'foo'});
    },
    toElement: function() {
        return this.realDiv;
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文