2016年12月19日
摘要:
.Metasploit框架介绍Metasploit升级更新 Metasploit端口扫描 Metasploit SMB 获取系统信息 Metasploit 服务识别 Metasploit 密码嗅探 Metasploit SNMP 扫描 Metasploit SMB登陆验证 Metasploit VN
阅读全文
posted @ 2016-12-19 20:10
hduhdc
阅读(168)
推荐(0)
2016年12月10日
posted @ 2016-12-10 12:39
hduhdc
阅读(228)
推荐(0)
摘要:
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> #main{ margin-top:100px; text-align: center; } #c1{ backgrou
阅读全文
posted @ 2016-12-10 12:26
hduhdc
阅读(514)
推荐(0)
摘要:
当定时器运行时即使每个迭代中执行的是setTimeout(.., 0),所有的回调函数依然是在循环结束后才会被执行 for语句开始赋值i=1;settimeout语句1000毫秒后把timer函数加入进程队列;(这里的i具体值是几,要等被调用的时候才知道);赋值i=2;settimeout语句100
阅读全文
posted @ 2016-12-10 10:54
hduhdc
阅读(292)
推荐(0)
2016年12月8日
摘要:
我们可以对表格table设置margin,而不能设置padding;对单元格td设置padding,而不能设置margin。 所以说,我们不能对单元格td设置margin属性来调整单元格与单元格之间的距离
阅读全文
posted @ 2016-12-08 20:49
hduhdc
阅读(104)
推荐(0)
2016年11月25日
摘要:
今天在写轮播图的时候发现了jquery的一个小问题,很希望和大家进行交流一下, 上面是轮播图的js代码,和奇怪的是: this.$ulImgs.css("left",0); this.autoMove();//启动自动轮播 这种写法轮播图会有滑动的效果。 this.$ulImgs.attr("lef
阅读全文
posted @ 2016-11-25 18:50
hduhdc
阅读(331)
推荐(0)
2016年5月14日
posted @ 2016-05-14 18:29
hduhdc
阅读(518)
推荐(0)
posted @ 2016-05-14 18:27
hduhdc
阅读(383)
推荐(0)
摘要:
在标准文档流里面,块级元素具有以下特点:①总是在新行上开始,占据一整行;②高度,行高以及外边距和内边距都可控制;③宽带始终是与浏览器宽度一样,与内容无关;④它可以容纳内联元素和其他块元素。行内元素的特点:①和其他元素都在一行上;②高,行高及外边距和内边距部分可改变;③宽度只与内容有关;④行内元素只能
阅读全文
posted @ 2016-05-14 08:49
hduhdc
阅读(181)
推荐(0)
2016年5月6日
摘要:
当DOM元素与对象之间的相互引用就会出现内存泄露的问题 var oDiv=document.getElementById('div1') var arr={}; oDiv.name=arr;DOM元素引用了对象 arr.s=oDiv;对象引用了DOM元素
阅读全文
posted @ 2016-05-06 15:18
hduhdc
阅读(111)
推荐(0)