如何在 jsFunction 中使用参数?我只是想做这样的事情,但我不起作用,即使使用支持 bean 变量#{id}
<a4j:jsFunction name="test" reRender="#{id}" oncomplete="alert('#{id}');">
<a4j:actionparam name="id" assignTo="#{id}" />
</a4j:jsFunction>
<a4j:commandButton immediate="true" onclick="test('outputPanel1');"/>
<a4j:commandButton immediate="true" onclick="test('outputPanel2');"/>
<a4j:commandButton immediate="true" onclick="test('outputPanel3');"/>
我知道我可以在每个 commandButton 中使用 reRender,但这只是显示我想要的行为的示例。
我正在使用richfaces 3.3.3。
谢谢