摘要:
for test,回答标题: offsetLeft是指当前元素的外边框到包含元素的内边框; position().left是指当前元素的margin(不包含margin)到定位元素的border-box(不包含border,但是包含padding),即pdding-box; 都... 阅读全文
摘要:
//2014.11// Backbone.js 1.0.0// (c) 2010-2013 Jeremy Ashkenas, DocumentCloud Inc.// Backbone may be freely distributed under the MIT licen... 阅读全文
摘要:
HTTP协议的URL 1 输入:www.guet.edu.cn 浏览器自动转换成:http://www.guet.edu.cn/ 2 http:192.168.0.116:8080/index.jsp 在CMD里面运行 tracert www... 阅读全文
摘要:
//在chrome测试的结果;知识点1:localStorage和sessionStorage的区别; localStorage生命周期是永久,这意味着除非用户显示在浏览器提供的UI上清除localStorage信息,否则这些信息将永远存在。 sessionStorage生命周期为当前窗口或标签页,... 阅读全文
摘要:
mediappppppppppppppppppppppppppppppppppppppp divContant 阅读全文
摘要:
HTML的代码CSS_counter 知识点1: CSS3中的content属性 知识点2: CSS3中的counter-reset和counter-increment属性 ... 阅读全文
摘要:
//知识点1:for In循环是可以枚举到继承的属性的;//知识点2:使用defineProperty让属性无法通过forIn枚举到;//知识点3:用definedProperty重新定义一个属性药把这个属性设置为空,然后重新定义才行哦; var obj = {}; Object.def... 阅读全文
摘要:
首先来一篇好文章,刚好看到的:沉默中的狂怒 —— Cookie 大喷发---------------- http://www.cnblogs.com/index-html/p/mitm-cookie-sniffer.html#3050493 我就重复一遍啦: 在chrome或者fir... 阅读全文
摘要:
1:引用模块"http" (执行命令node app.js "http://www.baidu.com")//app.jsvar http = require('http');var url = require('url');function spider(u,cb){ http.get( u... 阅读全文
摘要:
unicode和gbk的互相转换主要依靠window下的escape和unescape方法,然后把%u替换成\u就好了;var GB2312UnicodeConverter = { ToUnicode: function (str) { return escape(str).to... 阅读全文