实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p id="demo">Click the button to sort the array.</p>
6
7
<button onclick="myFunction()">Try it</button>
8
9
<script>
10
function myFunction()
11
{
12
var points = [40,100,1,5,25,10];
13
points.sort(function(a,b){return b-a});
14
var x=document.getElementById("demo");
15
x.innerHTML=points;
16
}
17
</script>
18
19
</body>
20
</html>
21
22