Implement the login page input box focus

If the form is:

$(document).ready(function(){
    form.name.focus();
})    

If only input box:

$(document).ready(function(){
    document.getElementById("name").focus();
})    

 

Guess you like

Origin www.cnblogs.com/cmz-32000/p/11596130.html