//问题2:字符串顺序的颠倒 var spritsentence1='abcde'; writeDocument('原句子为:'+spritsentence1); document.write("颠倒后句子为:"); function countChar(stringValue){ var i ; for(i=stringValue.length-1;i>=0;i--){ document.write(stringValue[i]); } } // 调用函数 countChar(spritsentence1); //用于换行 function writeDocument(variable) { document.write(variable + "<br/>"); }