appendChildで追加した要素を逆順にするにはどうしたらいいでしょうか
5回追加を押すと
0
1
2
3
4
と追加されます
リバースを押すと
4
3
2
1
0
となるようにするにはどうしたらいいでしょうか?
<style> body,html{ height:100%; } </style> <div id="output"></div> <input type="button" value="追加" onclick="add()"> <input type="button" value="リバース" onclick="reverse()"> <script> var i=0; function add(){ div=document.createElement("div"); div.innerText=i; div.style.width="100%"; div.style.height="10%"; div.style.background="red"; output.appendChild(div); i++; } function reverse(){ } </script>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/14 15:18
2021/06/14 15:26
2021/06/14 15:38
2021/06/14 15:42
2021/06/14 16:01