如何防止在jquery自动完成搜索中输入不匹配的值

时间:2014-04-23 19:25:02

标签: javascript jquery json autocomplete

我开发了jquery自动完成搜索。并且我想将其更改为当用户键入单词时如果没有该关键字的结果我想用弹出窗口显示无效输入来验证它。请建议

例如:如果用户输入“testing”并且如果没有任何自动填充结果,则应在输入搜索按钮之前看到一条消息

mycode的

 jQuery(function(){
    jQuery("#searchg").autocomplete({
        source:'government.php',
        delay: 300 ,

        minLength:1,
        select: function(event, ui) {

            if (ui.item.desc!="")
            {


                jQuery('#search1').

val(ui.item.desc);
        }
        else if ((ui.item.desc =="") &&(ui.item.icon !="") ) {
            jQuery('#categories_id1').val(ui.item.icon);

        }

    }

});

0 个答案:

没有答案