码迷,mamicode.com
首页 > 编程语言 > 详细

输入三个数字排序显示

时间:2017-04-27 17:04:20      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:tle   排序   body   []   nan   document   type   input   个数   

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>输入三个数字排序显示</title>
</head>
<body>
<p>第一个输入框</p>
<input type="text" id="a1"/>

<p>第二个输入框</p>
<input type="text" id="a2"/>

<p>第三个输入框</p>
<input type="text" id="a3"/><br/>

<button onclick="paixu()">排序结果:</button>
<p id="result"></p>
</body>

<script type="text/javascript">
var paixu = function () {
var a1,a2,a3;
a1=document.getElementById("a1").value;
a2=document.getElementById("a2").value;
a3=document.getElementById("a3").value;
a1=parseInt(a1);
a2=parseInt(a2);
a3=parseInt(a3);

var n=isNaN(a1);
console.log(n);

var str=[];
str.push(a1);
str.push(a2);
str.push(a3);
console.log(str);

str.sort();
console.log(str);
document.getElementById("result").innerHTML=str;

}
</script>

</html>

输入三个数字排序显示

标签:tle   排序   body   []   nan   document   type   input   个数   

原文地址:http://www.cnblogs.com/mx2036/p/6775062.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!