How to always focus keep focus in text box

后端 未结 2 1769
梦毁少年i
梦毁少年i 2021-02-11 05:06

I have created a single HTML page that contains two divs. The div on the left (90% of page) is the target for ajax results. The div on the right (10% of page) contains a single

相关标签:
2条回答
  • 2021-02-11 05:27

    Using jQuery would look something like this:

    $(function() {
         // Focus on load
         $('.scanner').focus();
         // Force focus
         $('.scanner').focusout(function(){
             $('.scanner').focus();
         });
         // Ajax Stuff
         $('.scanner').change(function() {
             $.ajax({
                 async: true,
                 cache: false,
                 type: 'post',
                 url: '/echo/html/',
                 data: {
                     html: '<p>This is your object successfully loaded here.</p>'
                 },
                 dataType: 'html',
                 beforeSend: function() {
                     window.alert('Scanning code');
                 },
                 success: function(data) {
                     window.alert('Success');
                     $('.objectWrapper').append(data);
                 },
                 // Focus
                 complete: function() {
                     $('.scanner').val('').focus();
                 }
            });
        });
    });
    

    jsFiddle example: http://jsfiddle.net/laelitenetwork/fuMYX/5/

    P.S: jQuery haters gonna hate ;).

    0 讨论(0)
  • 2021-02-11 05:36

    Use setInterval :

    setInterval(function(){
     var focusbox;
     focusbox = document.getElementById("part_to_search");
     focusbox.focus();
    });
    

    Jsfiddle http://jsfiddle.net/g9YxB/10/

    0 讨论(0)
提交回复
热议问题