英文:
Is there a way to make an input only accept one letter in HTML?
问题
我正在制作一个HTML版的Wordle复刻,我想为每个字母创建单独的输入,但我不知道如何让输入框只接受一个字母。有没有办法让输入框只接受一个字母?
英文:
I'm working on an Wordle remake in HTML, and I want to make separate inputs for each letter, but I don't know how to make the input only accept one letter. Is there any way to make an input only accept one letter?
答案1
得分: 0
当然可以。使用 maxlength
属性。
<input type="text" maxlength="1">
英文:
Sure you can. Using the maxlength
attribute.
<input type="text" maxlength="1">
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论