单击页面上的按钮时,调用函数,使用prompt()方法获取两个变量的值和一个运算符
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>编写一个带两个变量和一个运算符的四则运算函数</title>
</head>
<script type="text/javascript" src="js.js"></script>
<body>
<input name="btn" type="button" value="计算两数运算结果" onclick="account();"/>
</body>
</html>
//四则运算
function account() {
var op1 = prompt ("请输入第一个数:","") ;
var op2 = prompt ("请输入第二个数:","") ;
var op3 = prompt ("请输入运算符号:","") ;
var result ;
op1 = parseInt(op1) ;
op2 = parseInt(op2) ;
switch (op3){
case "+":
result = op1+op2 ;
break;
case "-":
result = op1-op2 ;
break;
case "*":
result = op1*op2 ;
break;
case "/":
result = op1/op2 ;
break;
default:
alert ("你呢输入有误!!!") ;
break;
}
alert ("两数运算结果为:"+op1+op3+op2+"="+result) ;
}