点等号不会出现结果

来源:6-11 编程练习

努力努力再努力圈

2020-02-20 17:32

<!DOCTYPE html>

<html>

 <head>

  <title> 事件</title>  

  <script type="text/javascript">

   function count(){

var  reason;

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


var second=   document.getElementById("txt2").value;//函数问题


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

switch(select){

case "+":    //冒号问题    引号问题

reason=parseFloat(first) + parseFloat(second) ;

case "-":    

reason=parseFloat(first) - parseFloat(second);

case "*":     

reason=parseFloat(first) * parseFloat(second);

case "/":

reason=parseFloat(first) / parseFloat(second);

}

    document.getElementById("fruit")=reason;   //输出问题

  

    


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

  • 英雄_无泪
    2020-02-23 17:05:43

    reason变量在count()函数内部

    外部无法调用

  • 我好怂的
    2020-02-21 21:04:44

    输出的那一行:document.getElementById("fruit")后面要加上 .value

    应该这样写:document.getElementById("fruit").value=reason;

    使这个文本框的值去等于你算出来的值。 

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题