用js实现产生20个随机整数,按从小到大排序,输出在多行文本框里 10
展开全部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<button id="btn">产生随机数</button><br />
<textarea id="ortxt" style="height:300px"></textarea>
</body>
<script>
document.getElementById("btn").onclick = function () {
var aRr = [];
var orTxt = document.getElementById("ortxt");
for (var i = 0; i < 20; i++) {
aRr.push(Math.ceil(Math.random() * 9000) + 1000);//生成随机数
};
aRr.sort(function (a, b) { return a - b; });//数组排序
orTxt.value = aRr.toString().replace(/,/g, "\n");//数组转化成字符串输入到多行文本框中
};
</script>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询