0

我正在使用 jgd-dropdown,不知道如何禁用或灰显这个对象?有人有类似的问题吗?

谢谢吉姆

4

1 回答 1

2

你已经找到答案了吗?我今天遇到了同样的需求,只是在 jquery.jgd.dropdown.js 中添加了以下 2 个函数:

$.fn.enable = function()
{
  $(this).removeAttr("disabled");
  $(this).children('dd').show();
};

$.fn.disable = function()
{
  $(this).attr("disabled", "disabled");
  $(this).children('dd').hide();
};

然后在需要时调用它们,即:$("#").enable();

于 2012-10-16T19:25:30.643 回答