jQuery 自动完成如何将此代码与我们的函数集成以进行验证?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能使用了错误的方法。您可以使用选择标签代替自动完成。那么用户只能做出有效的选择,并且他知道他可以选择什么。
但是,如果您想坚持使用自动完成功能,则需要独立于自动完成工具检查输入(它不用于验证)。您可以在发送数据之前或使用 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.