摘要: window.location.href = window.location.href + (window.location.href.indexOf('?') >= 0 ? '&' : '?') + 'rnd=' + Math.random() 阅读全文
posted @ 2021-06-11 16:37 heart—flying 阅读(74) 评论(0) 推荐(0) 编辑
摘要: function setIframeHeight(iframe) { if (iframe) { var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow; if (iframeWin.document.b 阅读全文
posted @ 2021-06-11 16:36 heart—flying 阅读(382) 评论(0) 推荐(0) 编辑
摘要: ◆ date = new Date(...) 生成指定日期和时间的日期对象。表示月份的参数介于 0 到 11 之间。 dd = new Date(1999, 11, 31); dd = new Date(1999, 11, 31, 23, 59, 59); dd = new Date("Dec 31 阅读全文
posted @ 2021-06-11 16:33 heart—flying 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 解决: IIS web.config 配置文件 IIS 下设置 POST请求其他(如.html ) 类似 阅读全文
posted @ 2021-06-11 16:25 heart—flying 阅读(379) 评论(0) 推荐(0) 编辑
摘要: $(function() { //全选或全不选 $("#all").click(function() { if (this.checked) { $("#list :checkbox").prop("checked", true); } else { $("#list :checkbox").pro 阅读全文
posted @ 2021-06-11 16:23 heart—flying 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 在使用JQuery EasyUI (1.4.2) 的datagrid控件时,使用动态指定columns的方式,相关代码如下: $("#topApList").datagrid({columns:[[ {field:'aaa',title: 'aaa',align: 'center',width: 1 阅读全文
posted @ 2021-06-11 16:19 heart—flying 阅读(66) 评论(0) 推荐(0) 编辑