直接上代码~
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>加法练习</title>
</head>
<body>
<script language="javascript">
var answer,x, y,str1;
x=3;
y=5;
str1="请计算:"+x+"+"+y+"=?";
//出现浏览器脚本提示
answer=prompt(str1);
if(answer==(x+y)){
//浏览器提示框
alert("答对了");
} else {
alert("加油啦!");
}
</script>
</body>
---------------------
【转载,仅作分享,侵删】
作者:如果东京不快乐
原文:https://blog.csdn.net/qq_41664272/article/details/88606309
版权声明:本文为博主原创文章,转载请附上博文链接!
|
|