js 让div元素倒序排列

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<ul class="container">
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<script>
const lis= document.querySelectorAll(".container>li");
for(let i=lis.length-1; i>-1; i--){
document.querySelector(".container").appendChild(lis[i]);
}
//循环条件 i=lis.length-1; i>-1; i-- 不能乱
</script>
</body>
</html>

【我喜欢你】倒过来:
js 让div元素倒序排列


js 让div元素倒序排列
https://github.com/chergn/chergn.github.io/0fb70282f286/
作者
全易
发布于
2024年3月28日
许可协议