Chỉ cần thử func này (nó có thể hoạt động không chỉ với 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);
}
Bạn có thể sử dụng nó như thế này
resized( '.advs-columns-main > div > div', function(a){
console.log(a);
console.log(this);
}, ['I\'m the first arg named "a"!']);
CẬP NHẬT:
Bạn cũng có thể sử dụng bộ theo dõi liên tục hơn (nó có thể hoạt động với mọi đối tượng, không chỉ các phần tử 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);
}
Hãy thử nó:
var b = '2',
a = {foo: 'bar', ext: ()=>{return b}};
changed(a, {
foo: false,
ext: true
}, ()=>{console.log('changed')})
Nó sẽ ghi 'thay đổi' mỗi khi bạn thay đổi trực tiếp b, a.foo hoặc a.ext