运行 ❯
获取你
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>Use select() to select the content of an Email Field</h2> E-mail: <input type="email" id="myEmail" value="john@example.com"> <p>Click the button to select the content of the email field.</p> <button type="button" onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myEmail").select(); } </script> </body> </html>