将 "textfield" 限制为仅接受数字,并且最多接受 magento 形式的 10 位数字

restrict the "textfield" to accept only digits and maximum 10 digits in magento form

这里是一个代码:http://pastebin.com/qCNGSKRn 显示电话号码输入电话号码。

我想限制上面的字段只接​​受数字,并且最多只能输入 10 个数字。不允许所有特殊字符和特殊符号和空格。

该字段不应接受超过 10 位数字。

请帮我找到解决办法。

<div class="field">
                <label for="telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
                <div class="input-box">
                    <input type="text" name="telephone" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text  <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="telephone" />
                </div>
            </div>

我必须在 class 中使用它 " class="input-text validate-length maximum-length-10 minimum-length-10 validate-digits helper('customer/address')->getAttributeValidationClass('telephone') ?>"" https://magento.stackexchange.com/questions/56413/restrict-the-textfield-to-accept-only-digits-and-maximum-10-digits-in-magento

http://inchoo.net/magento/out-of-the-box-form-validation-in-magento/