摘要:
样式 .weekday{ /* display: flex; */ border-left: 1px solid #ddd; border-top: 1px solid #ddd; list-style: none; margin: 0; padding: 0; width: 427px; over 阅读全文
摘要:
//Step1: 定义任务函数: 计算当前时间距离target时间的时间差 var target=new Date("2019/3/01 18:00:00"); function calc(){ //获得当前系统时间保存在变量now中 var now=new Date(); //用target-no 阅读全文
摘要:
https://blog.csdn.net/github_38771368/article/details/76984673 阅读全文
摘要:
2、datatbles 排序 {"data":"timeCache","sType": "html-percent"}, 3、日期格式化 4、复制 5、时间定时器 6、datatables 前端导出自定义 7、formData 8、验证规则常用 10、datables 自定义过滤 //自定义过滤 / 阅读全文
摘要:
var operafn = (function () { var obj = {'a':6,'b':8} var add = function () { obj.a++; console.log(obj); } var jian = function () { ... 阅读全文
摘要:
http://blog.csdn.net/liuyuqin1991/article/details/74980616 原文地址 阅读全文
摘要:
//设为盒子模型 主轴上子元素排列布局space-between .newAdd_wrap>.add_left, .acif_left, .part_left { display: flex; justify-content: space-between; //设为盒子模型 主轴上子元素排列布局sp 阅读全文
摘要:
//百分率排序 jQuery.fn.dataTableExt.oSort['number-fate-asc'] = function(s1,s2) { s1 = s1.replace('%',''); s2 = s2.replace('%',''); return s1-s2; }; jQuery.fn.dataTableExt.oSort... 阅读全文
摘要:
function isNull( str ){ if ( str == "" ) return true; var regu = "^[ ]+$"; var re = new RegExp(regu); return re.test(str); } 阅读全文