javascript – 从(扩展)HTML元素的子类化?

前端之家收集整理的这篇文章主要介绍了javascript – 从(扩展)HTML元素的子类化?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我喜欢它,如果我可以创建自己的类来扩展 HTML元素类,例如 HTMLDivElement或HTML ImageElement.

假设标准继承模式:

// class A:

function ClassA(foo) {
    this.foo = foo;
}

ClassA.prototype.toString = function() {
    return "My foo is " + this.foo;
};

// class B:

function ClassB(foo,bar) {
    ClassA.call(this,foo);
    this.bar = bar;
}

ClassB.prototype = new ClassA();

ClassB.prototype.toString = function() {
    return "My foo/bar is " + this.foo + "/" + this.bar;
};

我无法弄清楚构造函数中要调用内容

function Image2() {
    // this doesn't work:
    Image2.prototype.constructor.call(this);
    // neither does this (only applies to <img>,no equivalent for <span> etc.):
    Image.call(this);
}

Image2.prototype = new Image(); // or document.createElement("img");

Image2.prototype.toString = function() {
    return "My src is " + this.src;
};

这是不可能的吗?还是有某种方法?谢谢. =)

解决方法

好的,这个问题需要从当前技术的更新.

HTML5提供了创建自定义元素的方法.您需要通过document.registerElement注册您的元素,之后您可以像使用任何其他标记一样使用它.该功能已在最新的Chrome中提供.我不确定其他浏览器.

更多细节在这里:

http://www.html5rocks.com/en/tutorials/webcomponents/customelements/

原文链接:https://www.f2er.com/js/159419.html

猜你在找的JavaScript相关文章