DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 自定義jQuery插件方式實現強制對象重繪的方法教程
自定義jQuery插件方式實現強制對象重繪的方法教程
編輯:JQuery特效代碼     

本文實例講述了自定義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程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved