mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
12 lines
244 B
HTML
12 lines
244 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<textarea id='target'>simple text</textarea>
|
|
<script>
|
|
var textarea = document.getElementById('target');
|
|
textarea.focus();
|
|
textarea.setSelectionRange(0, textarea.value.length);
|
|
</script>
|
|
</body>
|
|
</html>
|