我想自定义人脸消息的呈现方式。
为了这,
<h:inputText id="name" required="true" />
当验证失败时,它将显示在
<h:message for="name" />
但是,我想自定义演示调用 JS 如下:
<div class="notification"></div>
function showNotification(msg){
$(".notification").html(msg);
$(".notification").fadeIn(1000, function(){
timeout = setTimeout(function(){
$(".notification").fadeOut(1000);
}, 5000);
});
}
我怎样才能做到这一点?