首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

依照width截取字符串

2012-08-31 
按照width截取字符串]/** * 按照width截取字符串 */function cutstr(source, width) {var el document.c

按照width截取字符串

]/** * 按照width截取字符串 */function cutstr(source, width) {var el = document.createElement("span");el.style.display = "none";document.body.appendChild(el);var span = $(el), s = "";for (var i = 0, len = source.length; i < len; i++) {span.text(span.text() + source.charAt(i));if (span.width() > width) {s = span.text();break;}}span.remove();span = null;return s ? s + "..." : source;};

热点排行