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.
好的,所以我在编码这个东西,我希望人们在<input type='text'>右边选择一个 1-100 的数字,所以我希望他们只能选择 1-100 内的一个数字,所以如果他们输入 101 或类似 300 它会回显错误,或者如果他们键入字母而不是数字,它也会回显错误。另外,我希望此代码使用 Java 或 PHP。什么都好。
<input type='text'>
如果有人能给我这个代码,那就太好了。
不要使用文本输入。使用HTML5 数字输入( demo ):
<input type="number" min="1" max="100"/>
确保在服务器端也验证用户的输入。