JavaScript中的if...else if...语句
程序员文章站
2024-01-06 13:32:58
...
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>
下一篇: 专栏:深入Oracle
推荐阅读
-
javascript - url地址中的中文转换问题
-
JavaScript 中 this 的使用详细介绍
-
js将iframe中控件的值传到主页面控件中的实现方法_javascript技巧
-
WordPress中实用的SQl语句
-
怎么在smarty中将javascript的值传到smarty中
-
关于javascript中call()和apply()方法的总结
-
请问新建字段时候语句`aaa` varchar(11) NOT NULL,中的NOT NULL有什么作用呢?
-
SQLServre中的控制流语句
-
在MySQL数据库中执行SQL语句时的几个注意点_MySQL
-
javascript字符串中的属性和方法介绍