我想限制文本框只接受带空格的字母。 我已经尝试过了,但是它不接受空格
<input type="text"
maxlength = "15"
name="txtName"
pattern="[A-Za-z \s*]"
class="form-control"
placeholder="Name"
required="required"
class="validate">
我也尝试这种模式。
pattern="[A-Za-z][" "]"
我不想在我的代码中为此模式使用任何功能。 我该如何用简单的一行代码来做到这一点??