摘要:
阅读全文
摘要:
event.preventDefault(); 阻止默认行为 例如:为复选框注册click事件,事件中执行e.preventDefault();后,复选框将不会被选中。 <input type="checkbox" @click="myClick($event)"> <script> var myA 阅读全文
摘要:
模糊查找 this.users.filter((item)=>{ var reg= new RegExp(this.searchText,'i'); return reg.test(item.name); }); 注:正则中的“i”指忽略大小写! 精确查找 this.users.filter((it 阅读全文