这是一个基本的hello world web组件。当属性“who”发生更改时,不会触发attributeChangedCallback。检查小提琴
MyElementProto.attributeChangedCallback = function(attr, oldVal, newVal) {
console.log('attributeChangedCallback triggered');
if (attr === 'who') {
this.setWho(newVal);
}
};
答案 0 :(得分:4)
您需要使用setAttribute
方法:
window.changeWhoAttr = function() {
var el = document.querySelector('#custom-tag');
el.setAttribute('who', 'Universe'); // Instead of el.who = 'Universe'
console.log('changeWhoAttr triggered');
}