在前端开发中,有一些非常有用的一些代码片段和javascript函数,我们可以参考和学习,下面是网上有人收集的一些比较常用的javascript函数。

1、字符串长度截取

function cutstr(str, len) {
    var temp,
        icount = 0,
        patrn = /[^\x00-\xff]/,
        strre = "";
    for (var i = 0; i < str.length; i++) {
        if (icount < len - 1) {
            temp = str.substr(i, 1);
                if (patrn.exec(temp) == null) {
                   icount = icount + 1
            } else {
                icount = icount + 2
            }
            strre += temp
            } else {
            break;
        }
    }
    return strre + "..."
}

更多内容请可移步:http://www.css88.com/archives/5180