Ich versuche, den Standardfokus auf ein Eingabefeld zu setzen, wenn die Seite geladen wird (Beispiel: Google). Meine Seite ist sehr einfach, aber ich kann nicht herausfinden, wie das geht.
Das habe ich bisher:
<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>
Wieso funktioniert das nicht, solange das gut funktioniert?
<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>
Hilfe wird sehr geschätzt :-)
Und Sie können das Autofokus-Attribut von HTML5 verwenden (funktioniert in allen aktuellen Browsern außer IE9 und darunter). Rufen Sie Ihr Skript nur auf, wenn es sich um IE9 oder früher oder eine ältere Version anderer Browser handelt.
quelle
autofocus
wird in Internet Explorer 9 und früheren Versionen nicht unterstützt.Dies ist eines der häufigsten Probleme mit dem Internet Explorer. Die Behebung dieses Problems ist einfach. Fügen Sie der Eingabe zweimal .focus () hinzu.
Fix: -
Rufen Sie FocusOnInput () für $ (document) .ready (function () {.....} auf.
quelle
Sie könnten auch verwenden:
Und dann in Ihrem JavaScript:
quelle