如何显示 jqueryui 按钮的禁用状态?

发布于 2024-09-16 08:56:34 字数 383 浏览 6 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

(り薆情海 2024-09-23 08:56:34

您可以通过 disable 方法禁用该按钮,像这样:

$(".commentsbutton").button("disable");​​​​​​​​​​​​​

您可以在这里尝试,稍后重新启用,只需使用enable 方法,如下所示:

$(".commentsbutton").button("enable");​​​​​​​​​​​​​

You can disable the button via the disable method, like this:

$(".commentsbutton").button("disable");​​​​​​​​​​​​​

You can give it a try here, to re-enable later, just use the enable method, like this:

$(".commentsbutton").button("enable");​​​​​​​​​​​​​
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文