菜单切换
FACESOHO知行者
心灵
记录
远方
赞赏工具
源代码:
点击运行
保存
<!DOCTYPE html> <html> <body> <p>该实例中,在文档加载后获取焦点:</p> <input type="text" id="myText" value="文本域"> <script> window.onload = function() { document.getElementById("myText").focus(); }; </script> </body> </html>
运行结果