jquery自动完成建议触发搜索按钮

jquery autocomplete suggestion trigger search button

本文关键字:搜索 按钮 jquery      更新时间:2023-09-26

好的iM使用jquery自动完成和Everything工作正常,但我希望它在选择建议时触发搜索按钮。我的代码是这样的。

    $( "#tags" ).autocomplete({
        source: availableTags
        select: function (event, item)
        {
            if (event.keyCode == 13){
                $('#IDofMYform').submit()
            }
        }
    });
});

您应该在提交之前将值设置为表单输入。如果您不这样做,您的表单将在有机会填充输入之前提交。

类似于:

$("#tags").autocomplete({
    source: availableTags
    select: function (event, ui) {
        //Set the value
        $(this).val(ui.item.value);
        // Submit the form
        $('#IDofMYform').submit();
    }
});