js
为倒萨大味道
这个作者很懒,什么都没留下…
展开
-
通过正则表达式获取被转换成字符串的table内标签被tr标签包围住的内容
.match(/<tr[^>]*>[\s\S]*?<\/tr>/gi)原创 2020-05-08 10:52:55 · 704 阅读 · 0 评论 -
JS 使用正则匹配字符串中所有大括号包含的数据,转换成数组形式
JS 使用正则匹配字符串中所有大括号包含的数据,转换成数组形式.match(/{[^}{]*?}/g)原创 2020-05-07 10:19:12 · 3222 阅读 · 0 评论 -
原生js实现 日期转化为时间戳
// 日期转换为时间戳 2018-11-24 00:00:00->1543022952function transfertime(string) { var f = string.split(' ', 2);//过滤空格 if(f[0].search("/") != -1){//判断是否包含- var d = (f[0] ? f[0] : '').split...原创 2018-12-07 09:18:32 · 943 阅读 · 0 评论 -
原生js 实现日期拆分 精确至时分秒
var date1='2018-12-26 00:00:00';var date2='2018-12-29 04:00:00';computed_time(date_sort(date1),date_sort(date2));//日期拆分function date_sort(date){ var time={}; var f = date.split(' ', 2);//过滤空格 ...原创 2018-12-07 09:26:16 · 4957 阅读 · 0 评论 -
删除JSON中的特定数据项目
delete list.data[i]['busScope']; {是数字下标 ‘xxx’字符串下下标}原创 2019-01-09 15:50:38 · 4063 阅读 · 0 评论 -
纯js 通过原型链的方式 获取当前时间 的昨天 和上一个月的时间
//时间格式化转换Date.prototype.Format = function (fmt) {var o = {“M+”: this.getMonth() + 1, //月份“d+”: this.getDate(), //日“H+”: this.getHours(), //小时“m+”: this.getMinutes(), //分“s+”: this.getSeconds(),...原创 2019-02-19 10:46:54 · 246 阅读 · 0 评论 -
js日期格式化
Date.prototype.Format = function (fmt) { var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), //小时 "m+": this.getMinutes(), //分 "s+": this.g...转载 2019-03-27 19:29:55 · 401 阅读 · 0 评论