Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的要求是让 mobilenumber 的 html 文本字段只接受数字
例如,如果用户输入“+”符号或字母,则不应允许他输入
在这种情况下,您可以使用 Html 5。
<input type="number" />
否则,如果你想使用 Javascript 来达到这个目的,你可以看看这个问题。