这中文提示是从哪里来的?
<!DOCTYPE html><html>
<head>
</head>
<body>
<p>Enter the number and click the verify button:</p>
<input id="id1" type="number" min="100" max="300" required>
<button onclick="myFunction()">verify</button>
<p>If the number entered is less than 100 or greater than 300, an error message is prompted.</p>
<p id="demo"></p>
<script>
function myFunction() {
var inpObj = document.getElementById("id1");
if (inpObj.checkValidity() == false) {
document.getElementById("demo").innerHTML = inpObj.validationMessage;
} else {
document.getElementById("demo").innerHTML = "The input is correct";
}
}
</script>
</body>
</html>
看看上面这段代码,大致意思就是会出现一个输入框,提示你输入的数字如果小于100或者大于300,就会有信息提示你错误了
我是抄Notepad++里的,在在火狐浏览器里运行一下
出现的内容都是英文
但是我输入的数字超出了提示范围,出现的错误信息竟然是中文
我就奇怪,代码里没有中文,怎么运行后出现了中文提示?