当前位置: 首页 > 工具软件 > HTTP Prompt > 使用案例 >

prompt

朱皓
2023-12-01

今天新学js中的promt

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
  <script type="text/javascript">
  function rec(){
	var score; //score变量,用来存储用户输入的成绩值。
	score = prompt("请输入成绩:");
	if(score>=95) 
	{
	   document.write("优秀!");
	}
	else if(score>=75)
    {
	   document.write("良好");
	}
	else if(score>=65)  
    {
	   document.write(”及格");
    }
    else
	{
       document.write("要努力了!");
	}
  }
  </script>
</head>
<body>
    <input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
 类似资料:

相关阅读

相关文章

相关问答