jsf commandbutton setenabled onclick

时间:2013-07-31 06:47:27

标签: javascript jsf onclick commandbutton

如何在用户点击它时禁用命令按钮(ajaxbutton)?

我尝试过:

onclick="javascript:this.disabled='true';"

onclick="document.getElementById('buttonid').disabled='true'"

但没有任何作用?

1 个答案:

答案 0 :(得分:1)

针对您的具体问题,我认为您只需删除'true'周围的引号即可。 但请查看此链接How can I disable an h:commandButton without preventing the action and actionListener from being called?