这是一个基本的 hello world Web 组件。当属性“who”更改时,不会触发 attributeChangedCallback。检查小提琴
MyElementProto.attributeChangedCallback = function(attr, oldVal, newVal) {
console.log('attributeChangedCallback triggered');
if (attr === 'who') {
this.setWho(newVal);
}
};
Run Code Online (Sandbox Code Playgroud)