秦小小樱

导航

2017年11月30日 #

伪元素消除浮动

摘要: clearfix:after{ diaplay:block; content:""; clear:both; } 阅读全文

posted @ 2017-11-30 17:51 RonnieQin 阅读(126) 评论(0) 推荐(0) 编辑

根据类名获取元素

摘要: function getClass(tagName,className) //获得标签名为tagName,类名className的元素 { if(document.getElementsByClassName) //支持这个函数 { return document.getElementsByClassName(className); } else ... 阅读全文

posted @ 2017-11-30 10:55 RonnieQin 阅读(1390) 评论(0) 推荐(0) 编辑