gpt4 book ai didi

jsf - 使用 JSF 生成输入类型 ="tel"

转载 作者:行者123 更新时间:2023-12-04 02:48:42 27 4
gpt4 key购买 nike

为了使网站对移动设备友好,我想添加

<input type="email">


<input type="tel">

但我必须像使用 JSF
<h:inputText  value="#{connetcionController.userName}" />

我们如何使用 JSF 生成 html 输入类型?

我也在使用primefaces,它们有类似的功能吗?

最佳答案

如果你使用 PrimeFaces,你应该可以使用 type<p:inputText>通过这种方式

<p:inputText type="email" ... />

或者
<p:inputText type="tel" ... />

如果您想继续使用 <h:inputText> ,您需要升级到最低 JSF 2.2 并添加新的 XML 命名空间 xmlns:a="http://xmlns.jcp.org/jsf/passthrough" ,那么您应该可以覆盖 type<h:inputText>通过这种方式
<h:inputText a:type="email" ... />

或者
<h:inputText a:type="tel" ... />

关于jsf - 使用 JSF 生成输入类型 ="tel",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16260240/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com