摘要: 省略号:selector{ -o-text-overflow: ellipsis;/*兼容opera*/ text-overflow: ellipsis;/*这就是省略号喽*/ overflow: hidden;/*设置超过的隐藏*/ white-space: nowrap;/*设置不折行*/ wi 阅读全文
posted @ 2016-11-11 14:48 ypm_wbg 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 nth-of-type这一类的选择器是针对同类型的子元素进行计算; nth-child这一类的先择器是连同父元素中的所有子元素一起计算; 标题1 内容 ......三万字 标题2 内容 ......三万字 标题3 内容 ......三万字 标题4 内容 ......三万字 标题5 内容 阅读全文
posted @ 2016-11-11 14:26 ypm_wbg 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 如下:获取abcd.txt文件的后缀名。 function getSuffix(file){ return file.slice(file.lastIndexOf(".") + 1,file.length); } 阅读全文
posted @ 2016-11-11 08:48 ypm_wbg 阅读(292) 评论(0) 推荐(0) 编辑