听“风格改变”事件有可能吗?
$('div').bind('style', function() { console.log($(this).css('height'));});$('div').height(100); // yields '100'
更新
(function() { var ev = new $.Event('style'), orig = $.fn.css; $.fn.css = function() { $(this).trigger(ev); return orig.apply(this, arguments); }})();
$('p').bind('style', function(e) { console.log( $(this).attr('style') );});$('p').width(100);$('p').css('color','red');
梵蒂冈之花
江户川乱折腾
翻阅古今
相关分类