摘要:
## 限制只能输入整数 > ___关键代码:___ __只能输入整数:__ oninput="this.value = this.value.replace(/[^0-9]/g, '');" __只能输入整数且长度小于7:__ oninput="if( this.value.length > 7 ) 阅读全文
摘要:
ElementUi中的el-form-item绑定对象中的集合中的对象属性 // 通用合同信息 class Form { constructor () { /** 必填字段 */ this.projectName = null this.address = null this.code = null 阅读全文