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

JavaScript进阶篇6-11练习,愁死我了死活运行不了

JavaScript进阶篇6-11练习,愁死我了死活运行不了

liaozixing007 2015-11-18 12:52:03
<!DOCTYPE html><html> <head>  <title> 事件</title>    <script type="text/javascript">   function count(){           var x=document.getElementById("txt1").value;    var y=document.getElementById("txt2").value;    var z=document.getElementById("select").value;    var sum="";    switch(z){        case "+":            sum=parseInt(x)+parseInt(y);            break;        case "-":            sum=parseInt(x)-parseInt(y);             break;        case "*":            sum=parseInt(x)*parseInt(y);            break;        default "/":            sum=parseInt(x)/parseInt(y);             }    document.getElementById("fruit").value=sum;   }  </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>
查看完整描述

3 回答

?
liaozixing007

TA贡献2条经验 获得超1个赞

非常感谢

查看完整回答
反对 回复 2015-11-24
?
李晓健

TA贡献1036条经验 获得超461个赞

<!DOCTYPE html>
<html>
<head>
    <title> 事件</title>
    <script type="text/javascript">
        function count(){

            var x=document.getElementById("txt1").value;
            var y=document.getElementById("txt2").value;
            var z=document.getElementById("select").value;
            var sum="";
            switch(z){
                case "+":
                    sum=parseInt(x)+parseInt(y);
                    break;
                case "-":
                    sum=parseInt(x)-parseInt(y);
                    break;
                case "*":
                    sum=parseInt(x)*parseInt(y);
                    break;
                default:
                    sum=parseInt(x)/parseInt(y);

            }
            document.getElementById("fruit").value=sum;
        }
    </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>

default  后面是没有值的   就类似if(xxxx){}else{}   中的 else

查看完整回答
反对 回复 2015-11-18
  • liaozixing007
    liaozixing007
    default和else更相当于条件选择的一个入口,就是上面的条件都不满足了,就进来这里,所以default后面是有值的。这节练习中的同学代码也是这么写的,可以运行。就是不知道我的问题出在哪里一节一节都对照过了。
  • 3 回答
  • 0 关注
  • 1519 浏览
慕课专栏
更多

添加回答

举报

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