摘要: <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" > <title></title> </head> <body> <ul id="myL 阅读全文
posted @ 2016-02-27 11:28 PLDaily 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 一. 事件流的三个阶段:1.捕获阶段。2.目标阶段。3.冒泡阶段。IE8之前不支持捕获。 二. 添加事件如何兼容所有浏览器: function addHandler(element, type, handler) { if(element.addEventListener) { element.ad 阅读全文
posted @ 2016-02-27 09:54 PLDaily 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1.选择一张较大的图片,一般为1920*12532.html { height: 100%;}body { width: 100%; height: 100%; background: url() left top no-repeat; background-size: 100% 100%... 阅读全文
posted @ 2016-01-14 20:01 PLDaily 阅读(2069) 评论(0) 推荐(0) 编辑
摘要: gif:在使用动画的时候,例如加载页面时显示的预加载。png与jpg的区别:1、png可以透明,jpg不能透明,所以需要透明的地方,必须用png。2、png是无损保存,多次保存都不会影响图片质量;而jpg是压缩不可逆保存,所以一个jpg图片经过多次保存之后就会越来越模糊。3、jpg小,png大;一般... 阅读全文
posted @ 2016-01-14 19:22 PLDaily 阅读(335) 评论(0) 推荐(0) 编辑
摘要: var timer = null;// typrof timer == 'object';timer = setInterval(function() { //...}, 1000);// typeof timer == 'number'clearInterval(timer);//typeof ... 阅读全文
posted @ 2016-01-13 18:39 PLDaily 阅读(1196) 评论(0) 推荐(1) 编辑
摘要: var n = 0;function fnTime(){alert(++n);}// 常用写法// 不加括号方式setTimeout(fnTime,5000);// 加字符串方式setTimeout('fnTime()',10000);// 加匿名函数方式setTimeout(function(){... 阅读全文
posted @ 2016-01-13 18:11 PLDaily 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 俩列布局的三种方式:方式一: My Page Left sidebar Main ContentView Code方式二: My Page Left Sidebar Main Content V... 阅读全文
posted @ 2015-09-03 19:44 PLDaily 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 一.数组的的创建 var a = new Array();等价于a = []; 二.实例方法 1.pop(): 去除数组的最后一项,会改变原数组。 var a = [1,2,3,4,5]; console.log(a);//[1,2,3,4,5] var b = a.pop(); console.l 阅读全文
posted @ 2015-06-05 19:15 PLDaily 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 例:将此图片作为背景图片导入。深蓝色紫色红色淡蓝色黄色绿色#skin{width: 120px;border: 1px solid #ccc;background-color: #fff;margin: 10px;padding: 4px;}#skin li{float: left;width: 1... 阅读全文
posted @ 2015-05-27 10:29 PLDaily 阅读(1246) 评论(0) 推荐(0) 编辑
摘要: 一.通过现有的数据直接返回demo.html//方式一//方式二 已有评论:test.json[ { "username": "张三", "content": "沙发." }, { "username": "李四", "content": "板凳." }, { "username": "王五", "... 阅读全文
posted @ 2015-05-26 19:23 PLDaily 阅读(112) 评论(0) 推荐(0) 编辑