zlczhou的gravatar头像
zlczhou 2016-07-29 15:07:39

jQuery EasyUI输入框如何限制长度?

现在有这样一个要求,比如一个输入框只能输入固定长度的字符,多余就不能输入,类似属性maxLength的功能。

请问使用easyui 样式的 输入框如何做到限制其输入长度呢?

所有回答列表(6)
碌碌无畏的gravatar头像
碌碌无畏  LV9 2016年7月30日

<input id="name" name="name" class="easyui-validatebox" data-options="validType:'length[1,10]'">

zlczhou的gravatar头像
zlczhou  LV4 2016年8月1日

或者你把你写的length方法分享出来看下,我期望的效果是,如果输入框只能输入10位字符,那么用户输入不进去第11位字符

tanhw的gravatar头像
tanhw  LV4 2016年8月3日

input  好像就有maxlength=''这个属性吧。

林銮建的gravatar头像
林銮建  LV7 2016年8月4日

添加属性data-options="validType:'length[1,10]'"

lining0755的gravatar头像
lining0755  LV4 2016年8月9日

沙发是正确的。

流浪的猫的gravatar头像
流浪的猫  LV2 2016年8月27日
 <input class="easyui-numberbox" precision="2" value="234.56" id="txt">
<script>
    $(function () {
        $('#txt').numberbox('textbox').attr('maxlength', 5);
    });
</script>
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友