我是靠谱客的博主 坦率音响,最近开发中收集的这篇文章主要介绍JavaScript中的if...else if...语句,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、源码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JavaScript</title>
<script type="text/javascript">
    var score = prompt("请输入一个分数","");
	if(!score){
		alert("您没有输入值!");
	}else{
		score *= 1;
		if(isNaN(score))
		{
			alert("您输入不合法的值!");
		}else{
			if(score >= 0 && score < 60)
			{
				alert("E");
			}else{
				if(score >= 60 && score < 70)
				{
					alert("D");
				}else{
					if(score >= 70 && score < 80)
					{
						alert("C");
					}else{
						if(score >= 80 && score < 90)
						{
							alert("B");
						}else{
							if(score >= 90 && score <= 100)
							{
								alert("A");
							}
						}
					}
				}
			}
			
		}
		
	}
</script>
</head>

<body>
</body>
</html>


最后

以上就是坦率音响为你收集整理的JavaScript中的if...else if...语句的全部内容,希望文章能够帮你解决JavaScript中的if...else if...语句所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部