只需尝试以下功能(它可能不仅适用于div):
function resized(elem, func = function(){}, args = []){
elem = jQuery(elem);
func = func.bind(elem);
var h = -1, w = -1;
setInterval(function(){
if (elem.height() != h || elem.width() != w){
h = elem.height();
w = elem.width();
func.apply(null, args);
}
}, 100);
}
你可以这样使用
resized( '.advs-columns-main > div > div', function(a){
console.log(a);
console.log(this);
}, ['I\'m the first arg named "a"!']);
更新:
您还可以使用更多的渐进式观察器(它可以用于任何对象,不仅限于DOM元素):
function changed(elem, propsToBeChanged, func = function(){}, args = [], interval = 100){
func = func.bind(elem);
var currentVal = {call: {}, std: {}};
$.each(propsToBeChanged, (property, needCall)=>{
needCall = needCall ? 'call' : 'std';
currentVal[needCall][property] = new Boolean();
});
setInterval(function(){
$.each(propsToBeChanged, (property, needCall)=>{
try{
var currVal = needCall ? elem[property]() : elem[property];
} catch (e){
var currVal = elem[property];
needCall = false;
propsToBeChanged[property] = false;
}
needCall = needCall ? 'call' : 'std';
if (currVal !== currentVal[needCall][property]){
currentVal[needCall][property] = currVal;
func.apply(null, args);
}
});
}, interval);
}
去尝试一下:
var b = '2',
a = {foo: 'bar', ext: ()=>{return b}};
changed(a, {
foo: false,
ext: true
}, ()=>{console.log('changed')})
每次直接更改b,a.foo或a.ext时,它将记录“已更改”