この記事の例では、オブジェクトの再描画を強制するように jQuery プラグインをカスタマイズする方法について説明します。皆さんの参考に共有してください。具体的な実装方法は以下の通りです。
jQuery.fn.redraw = function(){ jQuery(this).each(function(){ this.style.display='none'; this.offsetHeight; // no need to store this anywhere, the reference is enough this.style.display='block'; }); };
この記事が皆さんの jQuery プログラミングに役立つことを願っています。