我在下面的代码中需要一些帮助
<h:commandButton id="WhatifButtonID" value="#{demandBean.dmdReviewScreenLabelVO.whatIf}" style="width:60px; height:22px;" actionListener="#{demandBean.whatif}" onclick="window.open('DemandTargetList.xhtml','whatif','width=460,height=280,top=150,left=350,resizable=no,scrollbars=no')" >
<f:ajax execute="@this" ></f:ajax>
</h:commandButton>
在上述情况下,首先执行 onclick 属性,然后执行 actionlistener 属性。我希望先执行 actionListener 属性,然后执行 onclick 函数,因为加载 onclick 的页面需要从 actionListener 获取某些值。请让我知道如何实现同样的目标。提前致谢。