如何禁用精确 id 的 jQuery 函数?

发布于 2024-12-10 15:09:13 字数 779 浏览 1 评论 0原文

使用单选按钮启用/禁用选择菜单,但在将 jQuery ui 组合框实现到我的选择框后,以下脚本不会隐藏 jQuery ui 选择框。如何启用/禁用 jQuery ui 组合框?

$(".parentcheck").click(function () {
    var selectedmenu = $("#menu").val();
    if ($(this).val() === "0") {
            $("#parent").closest(".ui-widget").find("input, button" ).attr("disabled", true);
        $("#parent").hide().find('option:selected').removeAttr('selected');         
            $("#menu").change();
    }

    if ($(this).val() === "1") {
        $("#menu").change();
    }
});

尝试了这条线,

$("#parent").closest(".ui-widget").find("input, button" ).attr("disabled", true);

$("#parent").closest(".ui-widget").find("input, button" ).prop("disabled", true);

没有帮助

Using radiobutton for enabling/disabling select menu, but after implementing jQuery ui combobox to my select box, the following script doesn't hide jQuery ui select box. How to enable/disable jQuery ui combobox?

$(".parentcheck").click(function () {
    var selectedmenu = $("#menu").val();
    if ($(this).val() === "0") {
            $("#parent").closest(".ui-widget").find("input, button" ).attr("disabled", true);
        $("#parent").hide().find('option:selected').removeAttr('selected');         
            $("#menu").change();
    }

    if ($(this).val() === "1") {
        $("#menu").change();
    }
});

Tried this line,

$("#parent").closest(".ui-widget").find("input, button" ).attr("disabled", true);

also

$("#parent").closest(".ui-widget").find("input, button" ).prop("disabled", true);

doesn't help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

手长情犹 2024-12-17 15:09:13

这是官方文档网站 jQueryUI:

在初始化后获取或设置禁用选项。

 // getter
 var disabled = $(".selector").autocomplete ("option", "disabled");
 // setter
 $(".selector").autocomplete ("option", "disabled", true);

Here's official documentation site jQueryUI:

Get or Set the disabled option, after init.

 // getter
 var disabled = $(".selector").autocomplete ("option", "disabled");
 // setter
 $(".selector").autocomplete ("option", "disabled", true);
听你说爱我 2024-12-17 15:09:13

我认为 attr("disabled", true); 应该是 attr("disabled", "disabled");

I think attr("disabled", true); should be attr("disabled", "disabled");

橘亓 2024-12-17 15:09:13

试试这个 find("input:[type=button]" )

try this find("input:[type=button]" )

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