我已经在文本框中实现了自动完成功能。
代码:
//AutoComplete the textbox having userSearch class.
function AutoComplete() {
//Autocomplete added to the textbox.
$('.userSearch').autocomplete({
source: function (request, response) {
$.ajax({
url: "CTC.aspx/GetMemberName",
data: "{ 'prefixText': '" + request.term + "' }",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
success: function (data) {
response(data.d);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert('Error occured while autocomplete');
}
});
},
minLength: 1,
change: function (event, ui) { SaveData($(this).attr('id')); }
});
}
它工作正常。
但我想限制用户,以便他必须从建议列表中选择一个选项。
所以最后不需要一个验证函数来正确或不插入数据。
请帮忙
有什么方法可以约束用户只从建议的列表中选择?
提前致谢