如何显示 jqueryui 按钮的禁用状态?
我正在使用 Jquery UI 按钮 (http://jqueryui.com/demos/button/)。我想知道如何显示禁用状态。将按钮显示为灰色或其他内容,您知道当您在某些网站上发布表单时提交按钮如何显示为禁用。
还有没有办法显示活动状态???
这是我的代码:
$(".commentsbutton").button({icons: { primary: 'ui-icon-comment'}});
<a href="javascript:void[0]">Comments</a>
I am using Jquery UI buttons (http://jqueryui.com/demos/button/). I would like to know how I can show a disabled state. Show the button as greyed out or something, you know how when you post a form on some sites the submit button shows as disabled.
Also is there anyway to display an active state???
This is my code:
$(".commentsbutton").button({icons: { primary: 'ui-icon-comment'}});
<a href="javascript:void[0]">Comments</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过
disable
方法禁用该按钮,像这样:您可以在这里尝试,稍后重新启用,只需使用
enable
方法,如下所示:You can disable the button via the
disable
method, like this:You can give it a try here, to re-enable later, just use the
enable
method, like this: