繁体   English   中英

选择第一个搜索项目而不在Jquery中单击它

[英]Select first search item without clicking to it in Jquery

您好,我有一个html文件,其中包含多个输入,当自动完成时选择了匹配项时,这些输入会自动填充

我的html文件是:

<table class="table table-bordered">
    <ul>
        <li><label>Barcode</label>
            <input class="form-control" type='text' id='barcodescanr' name='barcodescanr' />
        </li>
        <li><label>Surname  </label>
            <input class="form-control" type='text' id='surname_1' name='surname' required/>
        </li>
        <li>
            <label>Name</label> 
            <input class="form-control" type='text' id='name_1' name='name' required/>
        </li>
        <li><label>Company Name</label>
            <input class="form-control" type='text' id='company_name_1' name='company_name' required/>
        </li>
    </ul>
</table>

我的搜索看起来像这样

填写输入字段的自动完成功能就是这样,它可以通过条形码扫描工作

$('#barcodescanr').autocomplete({
    source: function( request, response ) {
        $.ajax({
            url : 'ajax.php',
            dataType: "json",
            method: 'post',
            data: {
               name_startsWith: request.term,
               type: 'barcodescanr',
               row_num : 1
            },
             success: function( data ) {
                 response( $.map( data, function( item ) {
                    var code = item.split("|");
                    return {
                        label: code[0],
                        value: code[0],
                        data : item
                    }
                }));
            }
        });
    },
    autoFocus: true,
    minLength: 3,
    select: function( event, ui ) {
        var names = ui.item.data.split("|");                    
        $('#name_1').val(names[2]);
        $('#company_name_1').val(names[3]);
        $('#surname_1').val(names[1]);
        $('#firm_1').val(names[4]);
        $('#info').val(names[5]);
        $('#scanbartime').val(names[6]);
        $('#id').val(names[7]);
        $('#custId').val(names[8]);
    },
    open: function() {
        $( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
    },
    close: function() {
        $( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
    }               
 });                        

我如何从自动完成中选择第一个匹配的条形码,而无需单击它? 谢谢

$('.table-bordered ul li:first-child').click();

尝试这个

$('#barcodescanr').change(function(){
     $('#ui-id-1 li:first-child').trigger('click');
 });

或这样,当用户停止书写时

//setup before functions
var typingTimer;                //timer identifier
var doneTypingInterval = 2000;  //time in ms, 2 second for example
var $input = $('#barcodescanr');

//on keyup, start the countdown
$input.on('keyup', function () {
  clearTimeout(typingTimer);
  typingTimer = setTimeout(doneTyping, doneTypingInterval);
});

//on keydown, clear the countdown
$input.on('keydown', function () {
  clearTimeout(typingTimer);
});

//user is "finished typing," do something
function doneTyping () {
  $('#ui-id-1 li:first-child').trigger('click');
}

doneTypingIntervaldoneTypingInterval的值。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM