Skip to content

如何控制 input 输入框的输入字数?

Posted on:2022年10月11日 at 09:22

一般是通过 maxlength 属性进行限制:

<input maxlength="5" />

另外还可以通过监听 οninput 事件,对输入值进行处理。

原文转自:https://fe.ecool.fun/topic/9464fd89-1578-4f3b-a103-840b73b1987e