-1

在 Quiad js 中,我如何确保它只接受数字,我试过 pattern="/d*"

但无济于事。

   <p><label for="mobile">Mobile Phone <small class="hint">
   (if you have one)</small>  </label> 
    <input type="tel" name="mobile" id="mobile" size="13" maxlength="13" 
   class="mobile" pattern="/d*" required>
4

1 回答 1

0

我猜您正在尝试使用 html5 表单输入模式,更改为pattern="\d*",例如:

<p><label for="mobile">Mobile Phone <small class="hint">
   (if you have one)</small>  </label> 
    <input type="tel" name="mobile" id="mobile" size="13" maxlength="13" 
    class="mobile" pattern="\d*" required />
    </p>

添加

<input type="text" name="username" id="username" pattern="\d*" size="40" maxlength="100" required /> 

见:演示

于 2013-03-31T07:08:58.470 回答