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

点等号不会出现结果

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

reason变量在count()函数内部

外部无法调用

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

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

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

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

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

举报

0/150
提交
取消

点等号不会出现结果

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