gpt4 book ai didi

jquery-ui - 如何禁用 jquery ui 组合框?

转载 作者:行者123 更新时间:2023-12-03 18:09:10 27 4
gpt4 key购买 nike

我使用取自 this 的标准代码页面并尝试禁用组合框:

$( "#cbCountry" ).combobox({ disabled: true });

但它仍然是启用的。这里有什么问题?

最佳答案

轻松修改组合框库以使用:

$("#cbCountry").combobox('disable');
$("#cbCountry").combobox('enable');

在您的 combobox.js 文件中添加:
  • 在 _create: function() 添加局部变量“a”(在 var input 之后,a ...)。
  • 更改 input = $("<input>")input = this.input = $("<input>") .
  • 更改 a = $("<a>")a = this.a = $("<a>") .
  • destroy 之后插入:
    disable: function() {
    this.input.prop('disabled',true);
    this.input.autocomplete("disable");
    this.a.button("disable");
    },
    enable: function() {
    this.input.prop('disabled',false);
    this.input.autocomplete("enable");
    this.a.button("enable");
    }
  • 关于jquery-ui - 如何禁用 jquery ui 组合框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7666441/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com