gpt4 book ai didi

jquery - 如何限制用户选择表单ajax自动完成建议

转载 作者:行者123 更新时间:2023-12-01 00:18:51 25 4
gpt4 key购买 nike

我正在使用以下代码进行ajax建议

<script type="text/javascript">
$(function(){
setAutoComplete("searchField", "results", "<?php echo base_url(); ?>index.php/user/autofillvalue/<?php echo $this->uri->segment(3); ?>?part=");
});

在 html 中我的代码是

<div class="input text required" id="auto">
<input id="searchField" type="text" name="searchField" class='inp-form' autocomplete="off">
</div>

建议的代码是 json 编码的。我想限制最终用户只能选择表单建议值。这怎么可能?

最佳答案

正如您显然所知,JQuery documentation page详细介绍了名为 mustMatch 的选项。但正如 this post 中所解释的那样,无法使用。然而,救援来了this post 。其中有一些关于如何解决该问题的建议。以下是该页面的一个解决方案,由 @Anonymous 和 @Elliot 编写:

添加此:

change: function (event, ui) {
if (!ui.item) {
$(this).val('');
}
}

还有这个:

autoFocus: true

关于jquery - 如何限制用户选择表单ajax自动完成建议,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15471406/

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