使用標籤 uiremove

我們需要在任何我們想要評論它的 JSF 程式碼之間使用標籤 <ui:remove></ui:remove>

<ui:remove>
    <h:outputLabel value="Yeah, I'm really commented" />
</ui:remove>

當然,你需要將此 xmlns 新增到標頭 html 標記中。檢查這個最小的完整示例:

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets">
    
    <ui:remove>
        <h:outputLabel value="Yeah, I'm really commented" />
    </ui:remove>
    
</html>