為啥我做出來的數字輸入框里可以輸入字母e哇
別的字母都不行,但e可以輸入進去
<!DOCTYPE html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>input-number</title>
</head>
<body>
? ? <form method="post" action="save.php">
? ? ? ? 姓名:
? ? ? ? <input type="text" name="myName" placeholder="請輸入您的姓名"/>
? ? ? ? <br/>
? ? ? ? 出生年:
? ? ? ? <input type="number" name="Year"/>
? ? ? ? 月:
? ? ? ? <input type="number" name="Month"/>
? ? ? ? 日:
? ? ? ? <input type="number" name="Day"/>
? ? </form>
? ??
</body>
</html>
2021-08-08
可能是編碼的問題,數字輸入框就是可以輸入e的,你可以理解為科學計數法,Excel里有類似的情況