Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有两个<h:inputText>文本字段和一个<h:selectOneMenu>下拉字段的 Facelets 页面。当我刷新页面时,应清除在文本字段中输入的值,并且应将下拉菜单重置为其默认选择。这没有发生。这是如何引起的,我该如何解决?
<h:inputText>
<h:selectOneMenu>
现代网络浏览器将默认或通过配置自动完成输入字段。如果您想阻止这种浏览器特定的行为,那么您需要添加autocomplete="off"到各个输入字段。
autocomplete="off"
<h:inputText ... autocomplete="off" /> <h:inputText ... autocomplete="off" /> <h:selectOneMenu ... autocomplete="off" />
autocomplete