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.
我的 jQuery 中有两个动作
<br/> jQuery('#testForm\\:actionButtonA').click(); <br/> jQuery('#testForm\\:actionButtonB').click();
首先使重新加载页面 第二只显示我的对话框面板
如何使第二个动作等待完成重新加载页面?
您可以只添加一个回调函数并触发按钮 B 点击
jQuery('#testForm\\:actionButtonA').click(function(){ jQuery.ajax({ url: 'ajax/test.xhtml', success: function(response) { jQuery('#testForm\\:actionButtonB').click(); } }); });