rangeUnderflow Proprieta







? Se il numero in un campo di input ? inferiore a 100 (l? minattributo di input ), visualizza un messaggio:

https://www.w3schools.com/js/tryit.asp?filename=tryjs_validation_rangeUnderflow

<!DOCTYPE html>
<html>
<body>

<p>Enter a number and click OK:</p>

<input id="id1" type="number" min="100">
<button onclick="myFunction()">OK</button>

<p>If the number is less than 100 (the input?s min attribute), an error message will be displayed.</p>

<p id="demo"></p>

<script>
function myFunction() {
var txt = "";
if (document.getElementById("id1").validity.rangeUnderflow) {
txt = "Value too small";
} else {
txt = "Input OK";
}
document.getElementById("demo").innerHTML = txt;
}
</script>

</body>
</html>












( rangeunderflowproprieta.html )- by Paolo Puglisi - Modifica del 17/12/2023