问答详情
源自:6-11 编程练习

为什么没有输出?

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

       

    //获取第一个输入框的值

    var a1 = parseFloat(document.getElementById("txt1").value);

    

//获取第二个输入框的值

var a2 = parseFloat(document.getElementById("txt2").value);

//获取选择框的值

//获取通过下拉框来选择的值来改变加减乘除的运算法则

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

var result = "";

    //设置结果输入框的值 

    switch(fun){

        case("+"):

            result = a1 + a2;

            break;

        case("-"):

            result = a1 - a2;

            break;

        case("*"):

            result = a1 * a2;

            break;

        case("/"):

            result = a1 / a2;

            break;

        default:

            document.write("error!");

   }

   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>


提问者:沐沐26 2018-08-05 14:00

个回答

  • 慕函数1342074
    2018-08-05 15:41:33
    已采纳

    case("+"):  改为 case "+":

  • qq_该体谅的不执着_0
    2018-08-05 16:51:55

    <!DOCTYPE html>

    <html>

     <head>

      <title> 事件</title>  

      <script type="text/javascript">

       function count(){

         var p1=document.getElementById("txt1").value;

        //获取第一个输入框的值

        var p2=document.getElementById("txt2").value;

    //获取第二个输入框的值

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

    //获取选择框的值

    switch(s)

    {

        case '+':

        var p3 = parseInt(p1)+parseInt(p2);

        break;

        case '-':

        var p3 = p1 - p2;

        break;

        case '*':

        var p3 = p1 * p2;

        break;

        case '/':

        var p3 = p1 / p2;

        break;

        default:

        alert("失败");

        break;

    }

    //获取通过下拉框来选择的值来改变加减乘除的运算法则

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

        //设置结果输入框的值 

        

       }

      </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>