이 기사의 예에서는 객체 다시 그리기를 강제하기 위해 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 프로그래밍에 도움이 되기를 바랍니다.