摘要: <!--[ifIE6]> <styletypestyletype="text/css"> html{overflow:hidden;} body{height:100%;overflow:auto;} #fixed{position:absolute;} </style> <!--[endif]--> 阅读全文
posted @ 2012-09-21 09:43 谁抢了我的刺猬 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 源地址:http://ryanfait.com/resources/footer-stick-to-bottom-of-page/key css: * { margin: 0; } html, body { height: 100%; } .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -4em; } .footer, .push { height: 4em; }html: <htm... 阅读全文
posted @ 2012-08-21 11:14 谁抢了我的刺猬 阅读(666) 评论(0) 推荐(0) 编辑
摘要: .ellipsis { text-overflow:ellipsis; width: 100%; white-space: nowrap; word-wrap: normal; display: block; overflow: hidden;} 阅读全文
posted @ 2012-08-03 11:55 谁抢了我的刺猬 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 在写php输出html的时候碰到了一个超郁闷的div不匹配的问题。排除了各种原因,最后发现div后面的空格竟然不是真的空格!那货是\xc2\xa0,即为&nbsp;在utf-8下的编码。这货完全是披着空格皮的&nbsp;啊。。。在任何utf-8环境里显示完全和空格一样。。。浪费了我一个上午,才排查到这个问题。。。唉。。 阅读全文
posted @ 2012-06-18 15:28 谁抢了我的刺猬 阅读(3933) 评论(5) 推荐(4) 编辑
摘要: http://net.tutsplus.com/tutorials/javascript-ajax/you-dont-know-anything-about-regular-expressions/ 阅读全文
posted @ 2012-06-01 10:14 谁抢了我的刺猬 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 留作记录http://www.cnblogs.com/mingelz/archive/2009/08/12/dawn-css-reset.html 阅读全文
posted @ 2012-05-25 16:20 谁抢了我的刺猬 阅读(105) 评论(0) 推荐(0) 编辑
摘要: HTTP 协议详解http://www.cnblogs.com/li0803/archive/2008/11/03/1324746.htmlWeb 缓存机制概述http://www.alloyteam.com/2012/03/web-cache-1-web-cache-overview/ 阅读全文
posted @ 2012-05-25 09:49 谁抢了我的刺猬 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 本文主要记录正则中\N的用法var n = 7; //要判断的数字// 转换成具有n长度的字符串var s = [];while (n--){ s.push('i');}s = s.join(''); // s = 'iiiiiii'var re = /^i?$|^(ii+?)\1+$/; // 关键的正则!re.test(s); // true为什么这个正则会起作用呢?原因主要是在\1这个地方。正则|前半部分主要是判断0或1的,很简单。\N代表了第N组的内容,那么这个正则的|后面的部分的意思就是取前m(m>=2)个i,看看m个i后是不是正 阅读全文
posted @ 2012-04-18 15:51 谁抢了我的刺猬 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Backbone中Events的中只有3个方法,分别是on, off, trigger,十分清晰,也没有其他依赖,下面我们来分析一下。1. 绑定方法:on // Bind an event, specified by a string name, `ev`, to a `callback` // function. Passing `"all"` will bind the callback to all events fired. on: function(events, callback, context) { var ev; events = eve... 阅读全文
posted @ 2012-04-16 11:35 谁抢了我的刺猬 阅读(1298) 评论(1) 推荐(1) 编辑
摘要: <div id="eg"> <style type="text/css"> #eg ul li {clear: both; margin: 20px 0; min-height: 80px; _height: 80px; width: 230px; list-style: none;} #eg .avatar {width: 80px; height: 80px; background-color: red; color: #fff;} #eg .content {background-color: yellow; } #eg . 阅读全文
posted @ 2012-04-13 22:31 谁抢了我的刺猬 阅读(2398) 评论(0) 推荐(0) 编辑