运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Validation API</h1> <p>Enter a number and click OK:</p> <input id="id1" type="number" max="100"> <button onclick="myFunction()">OK</button> <p>If the number is greater than 100 (the input's max attribute), an error message will be displayed.</p> <p id="demo"></p> <script> function myFunction() { let text; if (document.getElementById("id1").validity.rangeOverflow) { text = "Value too large"; } else { text = "Input OK"; } document.getElementById("demo").innerHTML = text; } </script> </body> </html>