페이지로드시 기본 입력란 (예 : Google)에 포커스를 설정하려고합니다. 내 페이지가 단순하지만 아직 어떻게하는지 알 수 없습니다. 이 잘 작동하는 동안페이지의 HTML 입력 상자에 포커스 설정하기
<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>
어떻게 작동하지 않는 올 :
이것은 내가 지금까지있어 무엇인가?
<input type="password" name="PasswordInput"/>
그래서 같은 ID 속성이 있어야합니다 :
<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>
도움이 많이이 줄은
는 "현재의 모든 브라우저에서 작동"- 그 실제로 "모든 현재 브라우저"의 정의에 따라 달라집니다. –
ie9 : http://stackoverflow.com/questions/8280988/how-to-make-input-autofocus-in-internet-explorer – jedierikb
@BhaveshGangani ['autofocus' is is Internet Explorer 9 및 이전 버전에서는 지원되지 않습니다.] (http://www.w3schools.com/tags/att_input_autofocus.asp) –