我一直在使用jQuery UI Autocomplete从数据库中提出建议并自动完成其余的字段。 javascript工作正常,但它输出如下:
但是,如果我按下按钮并输入它,该字段将以数据库中的值完成。
这是我的javascript:
$(function() {
//clear values on refresh
$('#nmbr').val("");
$(".kdbr").autocomplete({
source: function (request, response) {
$.ajax({
url: "<?php echo base_url();?>js/coba3.php",
dataType: "json",
data: {
term: request.term
},
success: function (data) {
// var data = $.parseJSON(response);
response($.map(data, function (el) {
return {
kdbr: el.kdbr,
nmbr: el.nmbr
};
}));
}
});
},
select: function (event, ui) {
// Prevent value from being put in the input:
event.preventDefault();
this.value = ui.item.kdbr;
// Set the next input's value to the "value" of the item.
$('#nmbr').val(ui.item.nmbr);
}
});
});
这是我的HTML代码:
<form action="#" method="post">
<p><label for="kdbr">KDBR</label><br />
<input type="text" name="kdbr" id="kdbr" class = "kdbr" value="" /></p>
<p><label for="nmbr">NMBR</label><br />
<input type="text" name="nmbr" id="nmbr" class = "nmbr" value="" /></p>
</form>
这是我使用的javascript版本
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
我必须写它,因为当我使用版本1.8.1时,列表显示单词
未定义
答案 0 :(得分:1)
正如我在图片中看到的那样,我认为你没有包含jquery-ui的样式表,因为自动完成的样式没有很好。
请包含all.css或仅包含特定的autocomplete.css
https://github.com/jquery/jquery-ui/tree/master/themes/base
并使用此行
select: function (event, ui) {
// Prevent value from being put in the input:
event.preventDefault();
this.value = ui.item.kdbr;
// Set the next input's value to the "value" of the item.
$('#nmbr').val(ui.item.nmbr);
return false; //<--- you need to add this
}
并更改
return {
kdbr: el.kdbr,
nmbr: el.nmbr
};
到这个
return {
label: el.kdbr,
value: el.nmbr
};
自动完成需要包含该值及其标签的项目的json返回值