5

我有一个简单的登录页面,如果登录不成功,会显示一条消息。我希望这条消息在 5 秒后淡出,但我无法让它工作。

登录部分(删除了大部分不相关的东西):

<h:inputText title="Name" value="#{authBean.name}" id="username" />
<h:inputSecret title="Password" value="#{authBean.password}" id="password" />

<p:commandButton id="loginButton" action="#{authBean.loginAndRedirect}"
          update="@form" value="Login" />
<h:message id="messages" for="login:username" />

到目前为止我已经尝试过:

在 Firebug 命令行中输入的命令完美运行:$('[id$=messages]').fadeOut();

现在我需要一种通过计时器触发它的方法:

像这样在按钮上设置回调不起作用(没有效果,没有错误):

<p:commandButton ... oncomplete="setTimeout(5000, '$('[id$=messages]').fadeOut())" ... />

我已经尝试过了onclickoncomplete但没有效果也没有错误。

尝试在元素上使用 primfaces 效果(包装的 JQuery 效果)message

<h:message id="messages" for="login:username" errorClass="errorMessage">
  <p:effect type="fadeout" event="load" delay="5000">
    <f:param name="mode" value="'hide'" />
  </p:effect>
</h:message>

没有效果,没有错误。

4

2 回答 2

5

你在function里面缺少一个闭包setTimeout()。此外,调用函数比使用内联 JavaScript 更好。它更易于阅读和调试。

例如

<p:commandButton ... oncomplete="fadeoutfunction()" ... />

function fadeoutfunction(){
 setTimeout(function(){
    $('[id$=messages]').fadeOut();
 },5000);
} 
于 2013-03-11T10:52:27.590 回答
2
<p:commandButton ... 
oncomplete="setTimeout(function(){$('[id$=messages]').fadeOut()},'5000')" ... />
于 2013-03-11T10:52:04.023 回答