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

看到很多都是用的switch,我特意写了个用if的方式


<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

  function count(){

  var num1 = parseInt(document.getElementById("txt1").value);

  var num2 = parseInt(document.getElementById("txt2").value);

  var character = document.getElementById("select").value;

  var result;

  if(character=="+"){

  result = num1+num2;

  }

  else if(character=="-"){

  result = num1-num2;

  }

  else if(character=="*"){

  result = num1*num2;

  }

  else if(character=="/"){

  result = num1/num2;

  }

  else{

  result = null;

  }

  

  document.getElementById("fruit").value = result;

 }

  

  </script>

</head>

<body>

<input type = "text" id = "txt1"/>

<select id = "select">

    <option value="+">+</option>

<option value="-">-</option>

<option value="*">*</option>

<option value="/">/</option>

</select>

<input type = "text" id = "txt2"/>

<input type = "button" value = "=" onClick="count()"/>

<input type = "text" id = "fruit"/>

</body>


</html>


正在回答

1 回答

有什么问题吗?

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

2017210814柳亚利

没有,很棒
2019-12-11 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

看到很多都是用的switch,我特意写了个用if的方式

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