var str="qwert"; var arr=str.split(""); arr=arr.reverse();//颠倒顺序 document.write("字符串颠倒后的顺序为: "+arr.join(""));