如何在用户点击它时禁用命令按钮(ajaxbutton)?
我尝试过:
onclick="javascript:this.disabled='true';"
和
onclick="document.getElementById('buttonid').disabled='true'"
但没有任何作用?
答案 0 :(得分:1)
针对您的具体问题,我认为您只需删除'true'周围的引号即可。 但请查看此链接How can I disable an h:commandButton without preventing the action and actionListener from being called?