jQuery 自动完成如何将此代码与我们的函数集成以进行验证?

发布于 2024-12-09 08:28:59 字数 703 浏览 0 评论 0原文

我在 zend 项目中使用 jQuery 自动完成。输入显示我们数据库中的类别列表。我刚刚意识到,无论用户输入什么,表单仍然会提交。我寻找一种方法来验证该字段,以便他们只能从数据库/自动完成中选择一个选项。我发现这段代码可以工作,

var src = ['hi', 'bye', 'foo', 'bar'];

$("#auto").autocomplete({ 
    source: function(request, response) {
        var results = $.ui.autocomplete.filter(src, request.term);

        if (!results.length) {
            this.element.val('');
        }
        response(results);
    }
});

我的 JS 看起来像这样,我不知道如何使用上面的代码来验证来自自动完成的变量。任何帮助表示感谢,谢谢

$(function() {
    var url = "http://domain.com/account/ajaxautocomplete?format=json";
    $( "#autotest" ).autocomplete({
        source: url,
        minLength: 2
        });
});

I'm using jQuery autocomplete in a zend project. The input displays a list of categories from our database. I just realized the form will still submit no matter what the user enters. I looked for a way to validate the field so they could only select an option from the database / autocomplete. I found this code which works

var src = ['hi', 'bye', 'foo', 'bar'];

$("#auto").autocomplete({ 
    source: function(request, response) {
        var results = $.ui.autocomplete.filter(src, request.term);

        if (!results.length) {
            this.element.val('');
        }
        response(results);
    }
});

My JS looks like this, i'm not sure how to use the code above to validate our variables coming from the autocomplete. Any help is appreciated thanks

$(function() {
    var url = "http://domain.com/account/ajaxautocomplete?format=json";
    $( "#autotest" ).autocomplete({
        source: url,
        minLength: 2
        });
});

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

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

发布评论

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

评论(1

仙女 2024-12-16 08:28:59

您可能使用了错误的方法。您可以使用选择标签代替自动完成。那么用户只能做出有效的选择,并且他知道他可以选择什么。
但是,如果您想坚持使用自动完成功能,则需要独立于自动完成工具检查输入(它不用于验证)。您可以在发送数据之前或使用 keyup-event-listener 检查数据。

You are probably using the wrong approach. You could use instead of the auto-completion a select-tag. Then the user can only make a valid selection and he knows what he can select.
But if you want to stick with the auto-completion you need to check the input independent from the auto-completion-tool (it's not intended for validation). You could check the data before it's send or with an keyup-event-listener.

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