0

我正在使用 JSF 2.0。我一直在尝试为输入文本呈现占位符,并且正在尝试 primefaces 的水印。这是jsf代码

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:c="http://java.sun.com/jstl/core"
      xmlns:p="http://primefaces.org/ui">
....
....
<h:form>
    <table>
        <thead>
            <tr>
                <th>
                    <h:outputText value="Header"/>
                </th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>
                    <h:inputText id="first" value="#{bean.firstValue}"/>
                    <p:watermark for="first" value="Fill me"/>
                </td>
            </tr>
        </tbody>
    </table>
</h:form>

这是它的渲染方式:

<form id="j_id_1v" name="j_id_1v" method="post" action"/mypage/app/main.xhtml" enctype="application/x-www-form-urlencoded">
    <table>
        <thead>
            <tr>
                <th>
                    "Header"
                </th>
            </tr>
        </thead>
        <tbody>
            <input id="j_id_1v:first" name="j_id_1v:first" type="text" value>
            <p:watermark for="first" value="Fill me"></p:watermark>
        </tbody>
    </table>
</form>

#{bean.firstValue} 中的值为null。不确定这是否可以,或者它是否应该是一个空字符串。问题是渲染的输入字段是空的。无水印。我究竟做错了什么?

4

1 回答 1

0

您还需要添加 primefaces jar,就像添加 JSF jar/s

ps如果你想使用水印,你可以使用jquery水印插件...

于 2013-09-03T20:50:28.917 回答