【发布时间】:2017-09-18 00:05:26
【问题描述】:
有没有办法检测文档的外观何时发生了变化?例如:
$(document).on('change??', function () {
console.log('My aspect has changed');
});
// changes the appearance of a particular div
$('#my-div').css({width: 320, height: 240});
另外,有没有一种“渲染”事件?每次浏览器重绘页面时都会触发此事件。例如:
$(document).on('render', function () {
console.log('The page has been redrawn');
});
【问题讨论】:
标签: javascript html events document redraw