在页面加载时将焦点设置在 HTML 输入框上

2022-08-30 05:27:03

我试图在页面加载时将默认焦点设置在输入框上(例如:谷歌)。我的页面非常简单,但我不知道该怎么做。

这是我到目前为止所得到的:

<html>
<head>
 <title>Password Protected Page</title>

 <script type="text/javascript">
 function FocusOnInput()
 {
 document.getElementById("PasswordInput").focus();
 }
 </script>

 <style type="text/css" media="screen">
  body, html {height: 100%; padding: 0px; margin: 0px;}
  #outer {width: 100%; height: 100%; overflow: visible; padding: 0px; margin: 0px;}
  #middle {vertical-align: middle}
  #centered {width: 280px; margin-left: auto; margin-right: auto; text-align:center;}
 </style>
</head>
<body onload="FocusOnInput()">
 <table id="outer" cellpadding="0" cellspacing="0">
  <tr><td id="middle">
   <div id="centered">
  <form action="verify.php" method="post">
   <input type="password" name="PasswordInput"/>
  </form>
   </div>
  </td></tr>
 </table>
</body>
</html>

为什么这不起作用,而这工作正常?

<html>
<head>
<script type="text/javascript">
function FocusOnInput()
{
     document.getElementById("InputID").focus();
}
</script>
</head>

<body onload="FocusOnInput()">
  <form>
       <input type="text" id="InputID">
  </form>
</body>

</html>

非常感谢帮助:-)


答案 1

您可以使用HTML5的自动对焦属性(适用于除IE9及以下版本之外的所有当前浏览器)。仅当脚本是 IE9 或更早版本,或者其他浏览器的较旧版本时,才调用脚本。

<input type="text" name="fname" autofocus>

答案 2

此行:

<input type="password" name="PasswordInput"/>

应该有一个id属性,如下所示:

<input type="password" name="PasswordInput" id="PasswordInput"/>