Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用jsf 1(不支持 ajax),并且我正在使用带有commandLink和commandButtom的操作方法,我想知道如何在操作回发到服务器期间显示加载图像并在服务器端处理(回发)完成时隐藏它。
请指教。
您可以提供onclickof<h:commandButton>来显示您的加载指示器,例如:
onclick
<h:commandButton>
<h:commandButton ... onclick="showLoadingIndicator()" />
或者,您可以onsubmit使用<h:form>:
onsubmit
<h:form>
<h:form ... onsubmit="showLoadingIndicator()" />
这将在单击按钮或提交表单时调用您的 JavaScript 函数,您应该在其中可视化加载指示器。