运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> E-mail: <input type="email" id="myEmail"> <p>Click the button to set the width of the email field.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myEmail").size = "50"; } </script> </body> </html>