JavaScript 参考手册
HTML DOM focus() 方法
在文档加载后,为文本域设置焦点
源代码:
点击运行 »
<!DOCTYPE html> <html> <body> <p>该实例中,在文档加载后获取焦点:</p> <input type="text" id="myText" value="文本域"> <script> window.onload = function() { document.getElementById("myText").focus(); }; </script> </body> </html>
运行结果:
点击运行 »