Rails3-jquery-autocomplete 如果没有可用数据则清除字段

发布于 2024-11-03 18:06:06 字数 85 浏览 0 评论 0原文

我正在使用rails3-jquery-autocomplete。如果自动完成没有返回结果,是否可以清除自动完成字段的值?我试图阻止用户提交数据库中没有的值。

I am using rails3-jquery-autocomplete. Is it possible to clear the value of an autocomplete field if the autocomplete returns no results? I'm trying to prevent users from submitting values we don't have in database.

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

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

发布评论

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

评论(2

过去的过去 2024-11-10 18:06:06

我使用的是旧版本,但我为 autocomplete() 调用实现了 change 处理程序。

$('input[data-autocomplete]').live('focus', function(i){
  $(this).autocomplete({
    // ...
    change: function(event, ui) {
      var $this = $(this);

      // blank if nothing was selected
      if (!ui.item) {
        $this.val(null);

        var id_selector = $this.attr('id_element');

        if (id_selector)
          $(id_selector).val(null);
      }
    }
  });
});

I am using an older version but I implemented a change handler for the autocomplete() call.

$('input[data-autocomplete]').live('focus', function(i){
  $(this).autocomplete({
    // ...
    change: function(event, ui) {
      var $this = $(this);

      // blank if nothing was selected
      if (!ui.item) {
        $this.val(null);

        var id_selector = $this.attr('id_element');

        if (id_selector)
          $(id_selector).val(null);
      }
    }
  });
});
站稳脚跟 2024-11-10 18:06:06

您可以使用 select 回调函数检查值是否正确,如果不正确则清除此输入

$( ".selector" ).autocomplete({
   select: function(event, ui) { ... }
});

you can use select callback function to check if the value is correct, if its not then clear this input

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