var arr = new Array();arr.pust("a");arr.pust("b");arr.pust("c");var str = arr.join("");
使用join代替字符串拼接这个技巧对于IE6、7有显著性能提升,
其余浏览器字符串直接拼接就是最快的了。