有没有办法让Notification Bar自动隐藏。 我的意思是我们可以使用JavaScript做到这一点。 但Primefaces是否提供了其他任何功能呢?
我还想知道在JavaScript中将样式更改为窗口小部件的方法。
例如
<p:notificationBar widgetVar="notify" />
我可以用
notify.show() and notify.hide()
但是如何在JavaScript中更改背景颜色等样式?
答案 0 :(得分:2)
您可以按如下方式访问CSS:
jQuery(notify.jq).css();
根据jQuery参考手册使用css()
函数。