为了账号安全,请及时绑定邮箱和手机立即绑定

请大家帮帮忙看哪里有问题,总是算不出结果嘞

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>holiday review</title>

<script type="text/javascript">


function do(){

var num1=document.getElementById('num1').value;

var num2=document.getElementById('num2').value;

var result="";

var opt=document.getElementById('select').value;

switch(opt)

{

case "+":result=parseInt(num1)+parseInt(num2);

break;

case "-":result=parseInt(num1)-parseInt(num2);

break;

case "*":result=parseInt(num1)*parseInt(num2);

break;

case "/":result=parseInt(num1)/parseInt(num2);

break;

default:

break;

}

document.getElementById('result').value=result;

}


</script>

</head>

<body>

<input type='text' id='num1'/>


<select id='select'>

<option value='+'>+</option>

<option value='-'>-</option>

<option value='*'>*</option>

<option value='/'>/</option>

</select>

  <input type='text' id='num2'/> 

  <input type='button' value="=" onclick="do()"/>

  <input type='text' id='result'/>


</body>

</html>


正在回答

2 回答

do函数名实关键字吧,用别的名字

1 回复 有任何疑惑可以回复我~
#1

一只想周游世界的小蜗牛 提问者

谢谢大神,果然是这样~
2017-02-12 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请大家帮帮忙看哪里有问题,总是算不出结果嘞

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信