2016年3月23日
摘要: 如果传入选择器,has()会返回一个新的jquery对象, 仅包含有子孙元素匹配该选择器的选中元素。如果传, 入文档元素给has(),它会将选中元素集调整为那些 是指定元素祖先节点的选中元素。 例如: <p> <a href="baidu.com">1</a></p><p> <a href="bai 阅读全文
posted @ 2016-03-23 23:01 wts_crazy 阅读(401) 评论(0) 推荐(0) 编辑
  2016年3月22日
摘要: http://www.cnblogs.com/RascallySnake/archive/2010/05/07/1729563.html 阅读全文
posted @ 2016-03-22 22:10 wts_crazy 阅读(108) 评论(0) 推荐(0) 编辑
摘要: http://www.jb51.net/article/46463.htm 阅读全文
posted @ 2016-03-22 11:02 wts_crazy 阅读(101) 评论(0) 推荐(0) 编辑
  2016年3月21日
摘要: 通常情况下, 不使用display:block; 使用border-collapse:collapse; td不使用float:left,right 阅读全文
posted @ 2016-03-21 23:58 wts_crazy 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 1、多栏布局 2、盒布局 3、弹性盒布局 4、对calc方法的使用 阅读全文
posted @ 2016-03-21 15:32 wts_crazy 阅读(112) 评论(0) 推荐(0) 编辑
  2016年3月18日
摘要: 对于ios系统上的浏览器,如果某处实现了点击事件,则在点击该区域的时候,会有蓝边,而这种蓝边的效果有时候不是我们前端设计人员真正期望的点击效果 所以我们需要考虑将这样的蓝边去掉, .click_elm{ outline:none; -webkit-tap-highlight-color:rgba(0 阅读全文
posted @ 2016-03-18 15:07 wts_crazy 阅读(641) 评论(0) 推荐(0) 编辑
摘要: http://tinypng.com/ 阅读全文
posted @ 2016-03-18 10:24 wts_crazy 阅读(92) 评论(0) 推荐(0) 编辑
  2016年3月16日
摘要: 参考网址: http://tgideas.qq.com/webplat/info/news_version3/804/808/811/m579/201409/278736.shtml http://bbs.9ria.com/forum.php?mod=viewthread&tid=420838&ty 阅读全文
posted @ 2016-03-16 18:16 wts_crazy 阅读(322) 评论(0) 推荐(0) 编辑
摘要: -webkit-appearance: none;//阴影由该属性开启 -moz-appearance: none;appearance: none; -webkit-box-shadow:none; 参考网址: http://www.myexception.cn/HTML-CSS/2039213. 阅读全文
posted @ 2016-03-16 17:02 wts_crazy 阅读(301) 评论(0) 推荐(0) 编辑
  2016年3月12日
摘要: 1、未见过的事件: focusin跟focus事件区别在于,他可以在父元素上检测子元素获取焦点的情况。 focusout跟blur事件区别在于,他可以在父元素上检测子元素失去焦点的情况。 2、使用wrapAll方法 举例如下 原始代码: <div class="mm"><p>我们在公司</p></d 阅读全文
posted @ 2016-03-12 21:26 wts_crazy 阅读(161) 评论(0) 推荐(0) 编辑