随笔分类 - javascript
javascript
摘要:function printThis(){ // console.log(jQuery("#if1",parent.window.document)); // alert(window.parent.document.frames['if1']); if (!!window.ActiveXObject || "ActiveXObject" in window){ // ...
阅读全文
摘要:获取年月日时分秒的当前时间,可按照某种格式显示出来,下面是一种得到如2017年02月02日 00:00:00格式的当前时间 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <
阅读全文
摘要:哈希表(Hash table,也叫散列表),是根据关键码值(Key value)而直接进行访问的数据结构。也就是说,它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。这个映射函数叫做散列函数,存放记录的数组叫做散列表。 哈希表的做法其实很简单,就是把Key通过一个固定的算法函数既所谓的
阅读全文
摘要:if(Date.parse(endTime.replace('-','/').replace('-','/')) < Date.parse(startTime.replace('-','/').replace('-','/'))){ alert('结束时间必须大于开始时间'); return; }
阅读全文
摘要:var isChrome = window.navigator.userAgent.indexOf("Chrome") !== -1; if (isChrome) { alert("是Chrome浏览器"); } else { alert("不是Chrome浏览器"); }
阅读全文