JavaScript的一个关于年龄分类的练习

Posted 王。雄

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript的一个关于年龄分类的练习相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	<script type="text/javascript">
	      
		function getAgeName(){
			var age =document.getElementById(‘in‘).value;
			document.getElementById(‘bnt‘);  			
			if(!Number.parseInt(age)){
				alert("年龄输出错误")			
			}
			else if(age>=0&&age<=2){
				document.getElementById(‘out‘).innerHTML="婴儿";
			}
			else if( age>=3&&age<=5){
				document.getElementById(‘out‘).innerHTML="儿童";
			}
			else if(age>=6&&age<=12){
				document.getElementById(‘out‘).innerHTML="少年";
			}
			else if( age>=13&&age<=18){
				document.getElementById(‘out‘).innerHTML="青少年";
			}
			else if( age>=19&&age<=35){
				document.getElementById(‘out‘).innerHTML="青壮年";
			}
			else if( age>=36&&age<=45){
				document.getElementById(‘out‘).innerHTML="中年";
			}
			else if( age>=46){
				document.getElementById(‘out‘).innerHTML="老年"
			}
			else {
				alert("年龄输出错误")
			}
		}
	</script>
	</head>
	<body>
		<input style="text" id ="in" value=" " />
		<input type="button" onclick="getAgeName()" value="年龄所对应的状态" id="bnt"/>
		<div id="out">			
		</div>
	</body>
</html>

  

以上是关于JavaScript的一个关于年龄分类的练习的主要内容,如果未能解决你的问题,请参考以下文章

关于聚合函数的练习

代码片--练习匿名内部类

MySql 索引数据结构,千万级大表,关于性别及年龄字段是否需要加索引?

MySql 索引数据结构,千万级大表,关于性别及年龄字段是否需要加索引?

关于使用 requestAnimationFrame 制作 JavaScript 动画

关于JavaScript算法的几个小练习--DonyZ