在JSF 1.1中,是否可以将inputText的值用作outputLink的f:parm? 例如:
<h:inputText value="enter Input Value" />
<h:outputLink value="someLink.jsp" styleClass="searchButton">
<f:param name="userName" value="whatever the input value is" />
</h:outputLink>
答案 0 :(得分:0)
不使用标准JSF。您需要引入一些JavaScript代码。
E.g。
<h:form id="formId">
<h:inputText id="inputId" />
<h:outputLink value="someLink.jsp?userName=" onclick="href+=encodeURIComponent(document.getElementById('formId:inputId').value)" />
</h:form>
另一种方法是使用普通的HTML。
<f:verbatim>
<form action="someLink.jsp">
<input type="text" name="userName" />
<input type="submit" />
</form>
</f:verbatim>
如果需要,您可以添加一些CSS以使按钮看起来像链接。