js
Strugglin
这个作者很懒,什么都没留下…
展开
-
页面刷新
window.location.reload()刷新当前页面. parent.location.reload()刷新父亲对象(用于框架) opener.location.reload()刷新父窗口对象(用于单开窗口) top.location.reload()刷新最顶端对象(用于多开窗口)...原创 2018-07-23 18:04:04 · 276 阅读 · 0 评论 -
获取所有复选框选中状态的id
var id_array = new Array(); $('input:checkbox[name=item]:checked').each(function(){ id_array.push($(this).parents('td').siblings('.planId').attr('id'));//向数组中添加元素 });...原创 2018-07-25 09:51:49 · 5990 阅读 · 1 评论 -
ajax 异步上传文件
function uploade1(obj){ var fileObj = $(obj)[0].files[0]; //jq获取文件对象 // var fileObj = document.getElementById("fujian").files[0]; // js 获取文件对象 console.log(fileObj); if (typeof (fil...原创 2019-03-04 12:00:37 · 453 阅读 · 0 评论 -
jq 获取每月有几周 并且每周从几号到几号
<script>function getInfo(year, month) {var d = new Date();// what day is first dayd.setFullYear(year, month-1, 1);var w1 = d.getDay();if (w1 == 0) w1 = 7;// total day of monthd.setFullYe...原创 2019-03-21 11:19:07 · 1121 阅读 · 0 评论