用php做个计算器(加减乘除),两个文本框输入数字,第三个输出结果并
1个回答
展开全部
不需要php呀
这样写的行不
<!DOCTYPE html>
<html>
<head>
<title>简单计算器</title>
</head>
<body>
<input type="text" name="first" id="first">
<select id="operate">
<option>+</option>
<option>-</option>
<option>*</option>
<option>/</option>
</select>
<input type="text" name="second" id="second">=
<input type="text" name="result" id="result">
<input type="button" name="运算" value="运算" onClick="operate()">
<script type="text/javascript">
function operate() {
var first = parseInt(document.getElementById("first").value);
var second = parseInt(document.getElementById("second").value);
var result = document.getElementById("result");
var opt = document.getElementById("operate");
if (0 == opt.selectedIndex) {
resultvalue = first + second;
}else if(1 == opt.selectedIndex){
resultvalue = first - second;
}else if (2 == opt.selectedIndex) {
resultvalue = first * second;
}else if (3 == opt.selectedIndex) {
if (second == 0) {
alert("除数不能为0");
}
resultvalue = first / second;
}
result.setAttribute("value",resultvalue);
}
</script>
</body>
</html>
更多追问追答
追问
这是作业来的,刚学php的渣渣,怎么样挠头也写不出来
追答
这个是纯HTML实现的 就你提的需求来看, 根本不不需要用到PHP的呀
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询