2010-01-20 5 views

Répondre

6
<body onload="document.getElementById('myTextBox').focus();"> 

ou jquery

$(function() { $('#myTextbox').focus(); }); 
2

via Jquery

$(function() { 
    $("#Username").focus(); 
}); 
Questions connexes