<div class="htmlarea"> <textarea id="runcode68046"> <title> </title>JavaScript <table> <tr> <td> <input type="textfield" id="input">=></td> <td><div id="result"></div></td> </tr> </table> <input type="button" value="reverse" onclick="reverse()"> </textarea> <br><input onclick="runEx('runcode68046')" type="button" value="运行代码"><input onclick="doCopy('runcode68046')" type="button" value="复制代码"> <input onclick="doSave(runcode68046)" type="button" value="保存代码"> <a href="http://www.jb51.net/article/23421.htm" title="查看具体详情" target="_blank">[Ctrl A すべて選択 注: </a>外部 Js を導入する必要がある場合は、更新して実行する必要があります </div>]<br><strong><br>JavaScript reverse( ) メソッド </strong><br>この例では、配列を作成し、その要素の順序を逆にします: <div class="htmlarea"> <textarea id="runcode59760"></textarea> <br> <input onclick="runEx('runcode59760')" type="button" value="运行代码"><input onclick="doCopy('runcode59760')" type="button" value="复制代码"><input onclick="doSave(runcode59760)" type="button" value="保存代码"> <a href="http://www.jb51.net/article/23421.htm" title="查看具体详情" target="_blank"> </a>[Ctrl A すべて選択 注: </div>外部 Js を導入する必要がある場合は、更新して実行する必要があります <br>]<br><div class="codetitle">出力: <span><a style="CURSOR: pointer" data="37733" class="copybut" id="copybut37733" onclick="doCopy('code37733')"><u></u></a>コードをコピー</span> </div> <div class="codebody" id="code37733"> コードは次のとおりです:<br><br> <br>George,John,Thomas </div>トーマス、ジョン、ジョージ <script language="javascript"> function reverse() { var str=document.getElementById("input").value; var a=str.split(''); var result=new Array(); while(a.length) { result.push(a.pop()); } document.getElementById("result").innerHTML=result.join(''); } </script> <script type="text/javascript"> var arr = new Array(3) arr[0] = "George" arr[1] = "John" arr[2] = "Thomas" document.write(arr + " ") document.write(arr.reverse()) </script>