运行 ❯
获取您
自身
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>Use select() to select the content of a Number Field</h2> A Number: <input type="number" id="myNumber" value="2"> <p>Click the button to select the content of the number field.</p> <button type="button" onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myNumber").select(); } </script> </body> </html>