js获取iframe的window对象(包括iframe中不存在name和id的情况) ...
JS获取浏览器高度和宽度 IE中: document.body.clientWidth ==> BODY对象宽度 document.body.clientHeight ==> BODY对象高度 document.documentElement.clientWidth ==> 可见区域宽度 docum ...
分类:
Web程序 时间:
2021-05-24 08:42:24
阅读次数:
0
获取网页链接中的参数 function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); i ...
分类:
Web程序 时间:
2021-04-13 12:43:17
阅读次数:
0
凌晨0点 fields['startTime']=new Date(new Date(fields.searchTime2[0]).toLocaleDateString()).getTime() 当天23点59分59秒 fields['endTime']=new Date(new Date(fiel ...
分类:
Web程序 时间:
2021-04-10 13:03:41
阅读次数:
0
1.获取当前时间 var myDate = new Date(); 2.获取时间中的年月日时分秒 myDate.getYear(); // 获取当前年份(2位) myDate.getFullYear(); // 获取完整的年份(4位,1970-????) myDate.getMonth(); // ...
分类:
Web程序 时间:
2021-01-13 10:44:03
阅读次数:
0
关注公众号: 微信搜索 web全栈进阶 ; 收货更多的干货 开发日常,没什么技巧,主要是换算,直接看代码;复制粘贴即可用 对应的是element-ui DatePicker 带快捷选项 时间控件,所以返回的是数组; export const getTime = function () { // 起止 ...
分类:
Web程序 时间:
2021-01-11 10:55:48
阅读次数:
0
在此记录下: 正常情况下我们的data:$('#form').serialize(),但是这个只是序列化了表单的数据,不带上file文件,并且,我们需要使用原生的JS获取form( document.getElementById),这和JQ的$('#form') 获取到的对象的节点不一样 var f ...
分类:
Web程序 时间:
2021-01-08 10:40:36
阅读次数:
0
//获取某元素后相邻的所有class名为MsoToc2的兄弟元素nextAll(node){ let that = this, nextNode = that.next(node), nodeArray = []; while(nextNode != null && that.hasClass(ne ...
分类:
Web程序 时间:
2020-12-18 12:49:19
阅读次数:
2
今日0点 const start = new Date(new Date(new Date().toLocaleDateString()).getTime()); console.log(start); //Sat Nov 28 2020 00:00:00 GMT+0800 (中国标准时间) 今日 ...
分类:
Web程序 时间:
2020-12-02 12:47:11
阅读次数:
23