xhtml 文本字段,其中隐藏了长标签

xhtml text field with long label hidden inside

所以我有一个搜索框,里面有一个长标签,例如:

"Name, lastname, PersonCode, and so on... "

而且文本字段太小,放不下所有内容。

当我将鼠标移到标签上时,我需要使整个标签可见。

我在文本字段中使用的代码是:

<p:outputPanel id="keywords_filter" rendered="#{!externalRegistryQueryController.filter.detailedFilter}">
    <p:inputText value="#{externalRegistryQueryController.filter.keywords}" placeholder="#{msg.extreg_keywords_placeholder}"/>
</p:outputPanel>

使用title属性:

<p:inputText
        value="#{externalRegistryQueryController.filter.keywords}"
        placeholder="#{msg.extreg_keywords_placeholder}"
        title="#{msg.extreg_keywords_placeholder}"/>

title 属性在 PrimeFaces inputText 元素上定义,并映射到 HTML title 属性,它为您提供了您想要的工具提示行为正在请求。