在沒有任何框架的情況下使用Web Components,實現自定義事件的正確方法是什麼?例如,假設我有一個有pop自定義事件自定義元素x-pop-out我希望所有的工作情況如下: <x-pop-out onpop="someGlobal.doSomething()"/> var el = document.getElementsByTagName('x-pop-out')[0];
el.onpo
我試圖定義新的自定義元素。 // the class
class MyEl extends HTMLElement {
constructor() {
// mandatory super call to upgrade the current context
super();
// any other Class/DOM relate