mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
8 lines
155 B
HTML
8 lines
155 B
HTML
<!DOCTYPE html>
|
|
<input type="text" id="toFocus"></input>
|
|
<script>
|
|
window.onload = function() {
|
|
document.querySelector("#toFocus").focus();
|
|
}
|
|
</script>
|