Vue获取input输入的值、并限制长度
https://blog.csdn.net/weixin_33676492/article/details/92493267
·
https://blog.csdn.net/weixin_33676492/article/details/92493267
input只能输入数字并限制长度
限制长度(字符数)
<input type="number" oninput="if(value.length>11)value=value.slice(0,11)" />
<input type="text" v-model="brandName" maxlength="16" />
限制大小(最大值、最小值)
//限制最大值30
<input type="number" oninput="if(value>30)value=30" />
//限制最小值0
<input type="number" oninput="if(value<0)value=0" />
联合限制(限制长度和大小)
//长度2 最大值30 最小值0
<input type="number" oninput="if(value>30)value=30;if(value.length>2)value=value.slice(0,2);if(value<0)value=0" />
更多推荐
已为社区贡献60条内容
所有评论(0)