我有DIV
样式resize: both
,然后我设置了一个MutationObserver
来监听属性的变化。
mutObs = new MutationObserver(function () {
console.log('Hello');
});
elem = document.getElementById('aDiv');
mutObs.observe(elem, {
attributes: true
});
elem.style.width = '300px'; //this fires the observer callback as expected
我做了一个小提琴:http://jsfiddle.net/2NQQu/2/
在Chrome(我测试Chrome 31)中,当您使用鼠标调整DIV
大小时,不会触发回调。在Firefox中它可以正常工作。
这种行为是故意的和/或标准的吗?这是一个错误吗?