摘要:
let arr = [{ id: 1, name: 'zs' }, { id: 2, name: 'ls' }, { id: 3, name: 'ww' }, { id: 4, name: 'xm' }, { id: 5, name: 'xh' },] let sum = [3, 4, 5] let 阅读全文
摘要:
看的第一遍,找不到sass,查看node-sass文件,里面没有文件 解决办法 下载sass之前,要先修改源 先把node-modules删除掉 执行以下命令 npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sa 阅读全文
摘要:
一,在标签上注册点击事件 <div onclick="window.open('index.heml')">新窗口打开</div> <div onclick="window.open('index.html','_self')">在当前页面打开</div> 二,a标签跳转 <a href="inde 阅读全文
摘要:
多行文本溢出隐藏(有详细的解释):https://www.html.cn/archives/5206/ 单行文字溢出css: overflow: hidden; text-overflow: ellipsis; white-space: nowrap; 多行文字溢出省略号显示css: overflo 阅读全文
摘要:
一,Select选择器使用 html <Select v-model="model15" prefix="ios-home" style="width:200px"> <Option v-for="item in cityList" :value="item.id" :key="item.id">{ 阅读全文
摘要:
一, 1,日期时间选择器,验证时type应为'data'类型; { required: true, type: 'date', message: '请选择日期', trigger: 'blur' } 2,(将后台获取到的字符串格式的数据放入new Data()中,问题就解决了)日期时间选择器,是将时 阅读全文
摘要:
在做修改数据的对话框中表单校验时,日期时间验证不了小图标一直在打转,因为我后台获取到的数据(是字符串的格式),应该将获取到的字符串格式的数据放到new Data()中(转为标准时间格式),就可以通过验证了,也可以正常提交表单了。 <FormItem prop="beginDate"> <DatePi 阅读全文
摘要:
用的iview组件库+vue,报了个这个错[Vue warn]: Error in callback for watcher "value": "Value should be trueValue or falseValue." 后台给我的值是0,1 我这边按钮的值是true, false,那个错误 阅读全文
摘要:
html <div class="number"></div> js $('.number').text("999"); // 设置页面中要显示的数字 $('.number').leoTextAnimate({delay:200,autorun:true,fixed:[',',':','.'],st 阅读全文
摘要:
1,用validate来进行表单验证 https://www.cnblogs.com/g-smile/p/9159549.html 2,通过正则进行验证 https://blog.csdn.net/pingxiaoje/article/details/84595447 阅读全文