摘要: http://blog.csdn.net/wei549434510/article/details/50596207 xxxxxx yyyy MM dd 375 0 十八位 xxxxxx yy MM dd 75 0 十五位 地区:[1-9]\d{5}年的前两位:(18|19|([23]\d)) 18 阅读全文
posted @ 2018-02-28 15:13 小牧临风 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 参考地址:http://blog.csdn.net/xuezhongsong/article/details/6859037 方式1:全局控制回车,13-回车键,27-ESC,113-F2 1 2 3 4 5 6 7 document.onkeydown=function(e){ var e = e 阅读全文
posted @ 2018-02-05 16:11 小牧临风 阅读(130) 评论(0) 推荐(0) 编辑
摘要: series : [ {//name : '',name:'',type : 'pie',radius : '65%',center : [ '50%', '50%' ],label : {normal : {formatter: '{b}:{c}: ({d}%)',textStyle : {fon 阅读全文
posted @ 2018-01-04 16:57 小牧临风 阅读(75) 评论(0) 推荐(0) 编辑
摘要: // 导入echarts //import echarts from 'echarts' // 引入基本模板 let echarts = require('echarts/lib/echarts') // 引入饼图组件 require('echarts/lib/chart/pie') // 引入提示 阅读全文
posted @ 2018-01-04 14:57 小牧临风 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 2.1、html代码 <span :class="{'fonts':ruleForm.BMI=='请完善身高体重'}">{{ruleForm.BMI}}</span> <!--<span :style="{color:ruleForm.BMI=='请完善身高体重' ? 'red' : blue}"> 阅读全文
posted @ 2018-01-02 16:11 小牧临风 阅读(99) 评论(0) 推荐(0) 编辑
摘要: //弹窗弹出$(function(){ $("#cardMeNot").click(function(){ $("#cardTan").slideDown(500); $("body").css({"overflow":"hidden","height":"100%"}); });//关闭弹框 $( 阅读全文
posted @ 2017-12-22 14:43 小牧临风 阅读(196) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/album/ca41422fff77021eae99ed86.html?picindex=1 或者,你在普通的DOS窗口中输入命令“runas /user:administrator "cmd /k" ”按回车,并输入这个管理员帐号的密码,同样会有 阅读全文
posted @ 2017-11-06 11:45 小牧临风 阅读(807) 评论(0) 推荐(0) 编辑
摘要: eslint:javascript代码质量检查工具。 目前大环境下主要有三款JS代码质量检查工具:jslint、jshint、eslint。 jslint:无需配置,直接使用,因为配置是定好的。缺点是有限的配置选项,很多规则不能禁用,规范严格,扩展性差,无法根据错误定位到对应的规则。 jshint: 阅读全文
posted @ 2017-11-06 10:40 小牧临风 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1.丢弃小数部分,保留整数部分js:parseInt(7/2)2.向上取整,有小数就整数部分加1js: Math.ceil(7/2)3,四舍五入.js: Math.round(7/2)4,向下取整js: Math.floor(7/2) 阅读全文
posted @ 2017-09-14 18:27 小牧临风 阅读(396) 评论(0) 推荐(0) 编辑
摘要: Swiper是目前较为流行的移动端触摸滑动插件,因为其简单好用易上手,很受很多设计师的欢迎。 今天在使用Swiper的时候遇到这个问题: 使用angularjs动态循环生成swiper-slide类,在swiper-wrapper里生成n个以上的滑动页,可是就是划不到第二页,尝试将longSwipe 阅读全文
posted @ 2017-09-12 11:42 小牧临风 阅读(384) 评论(0) 推荐(0) 编辑