1

我已经在文本框中实现了自动完成功能。

代码:

//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')); }
});
}

它工作正常。

但我想限制用户,以便他必须从建议列表中选择一个选项。

所以最后不需要一个验证函数来正确或不插入数据。

请帮忙

有什么方法可以约束用户只从建议的列表中选择?

提前致谢

4

1 回答 1

0

试试这个

change: function (event, ui) {
        if (!ui.item) {
            //Not selected from the list
        }
        SaveData($(this).attr('id'));
    }
于 2012-12-12T11:21:44.757 回答