gpt4 book ai didi

HTML5 验证输入只接受字母

转载 作者:搜寻专家 更新时间:2023-10-31 08:07:07 25 4
gpt4 key购买 nike

我有一个输入的名字

<input pattern="[a-zA-Z]" oninvalid="setCustomValidity('Please enter on alphabets only. ')" type="text" class="form-control" name="first_name" placeholder="Firstname">

我输入为:qwerqwe

我不断得到

请只输入字母。打印出来

enter image description here

难道 qwerqwe 应该是有效的吗?我现在有点困惑,不确定我在这里错过了什么。

有人可以给我一些提示吗?

最佳答案

您只允许使用一个字符。您错过了 + 符号:

<input pattern="[a-zA-Z]+" oninvalid="setCustomValidity('Please enter on alphabets only. ')" type="text" class="form-control" name="first_name" placeholder="Firstname">

作为@le_m评论里说,可以写*通配符来允许空输入:

<input pattern="[a-zA-Z]*" oninvalid="setCustomValidity('Please enter on alphabets only. ')" type="text" class="form-control" name="first_name" placeholder="Firstname">

关于HTML5 验证输入只接受字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37548397/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com