摘要:
因为ie10-ie11的版本问题,不再支持document.all判断,所以ie判断函数要重新写了 ? 1 2 3 4 5 6 function isIE() { //ie? if (!!window.ActiveXObject || "ActiveXObject" in window) retur 阅读全文
摘要:
分类: javascript(84) [html] view plain copy print? /* * MAP对象,实现MAP功能 * * 接口: * size() 获取MAP元素个数 * isEmpty() 判断MAP是否为空 * clear() 删除MAP所有元素 * put(key, va 阅读全文
摘要:
一、js实现关闭当前子窗口,刷新父窗口 JS代码如下: <script> function refreshParent() { window.opener.location.href = window.opener.location.href; window.close(); } </script> 阅读全文
摘要:
属性 说明 window.location.href 完整的url window.location.protocol 协议 window.location.hostname 主机名 window.location.host 主机名+端口号 window.location.port 端口号 windo 阅读全文
摘要:
// 对Date的扩展,将 Date 转化为指定格式的String// 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date( 阅读全文