自定义jQuery插件方式实现强制对象重绘的方法

Lark ·
更新时间:2024-11-10
· 981 次阅读

本文实例讲述了自定义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程序设计有所帮助。



重绘 方法 对象 jQuery

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章
Flavia 2020-02-10
602