摘要: 1、页面显示层叠效果: 上图看看: 阅读全文
posted @ 2017-03-30 16:14 白卫云 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 1、用border写左边竖条 html:<div></div> css: div{ position:relative; width:200px; height:60px; background:#ddd; } div{ border-left:5px solid deeppink; } 2、用伪类 阅读全文
posted @ 2017-03-30 16:13 白卫云 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 下面我来说说通过jquery自动创建元素进行事件绑定的问题: 普通绑定事件:$('.btn1').click(function(){}绑定,这个比较适用于页面中本来就有了类名为btn1元素 on绑定事件:$(document).on('click','.btn2',function(){}) 或者$ 阅读全文
posted @ 2017-03-30 11:24 白卫云 阅读(109) 评论(0) 推荐(0) 编辑