我正在使用Jquery UI按钮(http://jqueryui.com/demos/button/)。我想知道如何展示残疾人状态。将按钮显示为灰色或其他内容,您知道当您在某些网站上发布表单时,提交按钮显示为已禁用。
无论如何还要显示活动状态???
这是我的代码:
$(".commentsbutton").button({icons: { primary: 'ui-icon-comment'}});
<a href="javascript:void[0]">Comments</a>
答案 0 :(得分:3)
您可以通过disable
method禁用此按钮,如下所示:
$(".commentsbutton").button("disable");
You can give it a try here,要稍后重新启用,只需使用enable
方法,如下所示:
$(".commentsbutton").button("enable");