mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
13 lines
289 B
HTML
13 lines
289 B
HTML
<html>
|
|
<script type="text/javascript">
|
|
function autofocus() {
|
|
document.getElementById('inputfield').focus();
|
|
}
|
|
window.onload = autofocus;
|
|
</script>
|
|
<body>
|
|
<p>This page has a auto focused input field.</p>
|
|
<input type="text" id="inputfield" />
|
|
</body>
|
|
</html>
|