2011-03-04 2 views

답변

7

아니오 rendered 특성되지 클라이언트 측위한 서버 측이다. 클라이언트 측의 일반 HTML/JS에서는 CSS display 속성을 토글 할 수 있습니다.

// Get element by client ID. 
var element = document.getElementById('formid:buttonid'); 

// Hide it. 
element.style.display = 'none'; 

// Show it. 
element.style.display = 'inline'; // or 'block' if it's a HTML block element 
관련 문제