前端实用方法
Yfantastic
这个作者很懒,什么都没留下…
展开
-
CSS限制字数,超出部份显示点点点...
嚯嚯嚯嚯嚯嚯嚯嚯嚯 语法: text-overflow : clip | ellipsis 说明: clip : 不显示省略标记(...),而是简单的裁切 ellipsis : 当对象内文本溢出时显示省略标记(...) 语法: white-space:nowrap; 说明: 规定段落中的文本不进行换行原创 2017-11-17 15:44:33 · 2881 阅读 · 0 评论 -
判断是否为ie
function IEVersion() { var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串 var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE var isEdge =转载 2017-11-17 15:47:43 · 241 阅读 · 0 评论