//给大家一个任意的字符串,如何实现把字符串中的字符顺序颠倒。 var str1="enoannaw"; document.write(str1+"</br>") for(i=str1.length-1;i>-1;i--){ document.write(str1[i]); }