我有一个生成确认弹出窗口的命令按钮。确认的文本来自消息包。是否可以将参数传递给确认?
这就是我正在尝试的:
<h:commandButton value="#{tkmsg.addAccount}" action="#{ebfAccountControllerBean.specifyEbfAddAccount}"
onclick="return confirm('#{tkmsg.confirmAddAccount}');">
<f:param value="this account"/>
<f:param value="this email"/>
</h:commandButton>
但它不起作用。我只是得到
Are you sure you want to add account {0} with email {1}?
参数是否仅适用于 OutputText 或 OutputFormat?有没有其他方法可以做到这一点?我的下一步是用表单中的数据替换“此帐户”。