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