この関数を試してみてください(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を直接変更するたびに、「変更された」ログが記録されます。