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

哪里出错了?

哪里出错了?

慕粉3646148 2016-07-18 17:30:38
<!DOCTYPE html><html> <head>  <meta charset="utf-8" /><script type="text/javascript"> function count(){    var txt1 = parseInt(document.getElementById("txt1").value);    var txt2 = parseInt(document.getElementById("txt2").value);    var select1 = document.getElementById("select").value;    var result="";    switch(select1){        case "+":           result = txt1+txt2;           break;        case "-":           result = txt1-txt2;           break;        case "*":           result = txt1*txt2;           break;       default:           result = txt1/txt2;    }  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>
查看完整描述

2 回答

已采纳
?
snowmanJS

TA贡献89条经验 获得超53个赞

 <input type='button' value=' = ' onclick=count()/> 应改为 <input type='button' value=' = ' onclick="count()" />

查看完整回答
2 反对 回复 2016-07-18
?
Caballarii

TA贡献1123条经验 获得超629个赞

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

onclick要加引号

查看完整回答
2 反对 回复 2016-07-18
  • 2 回答
  • 0 关注
  • 1260 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信