等于号哪去了?

来源:6-11 编程练习

王二大

2015-02-08 21:36

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>事件</title><script type="text/javascript">function count(){ var txt1,txt2,select,result; txt1=parseInt(document.getElementById('txt1').value); txt2=parseInt(document.getElementById('txt2').value); select=document.getElementById('select').value; switch(select){ case '+': result=txt1+txt2; break; case '-': result=txt1-txt2; break; case '*': result=txt1*txt2; break; case '/': result=txt1/txt2; break; } result=document.getElementById('fruit').value; }</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' />   <iput type='button' value=' = ' onclick='count()'/>   <input type='txt' id='fruit'/>      </body></html> 

这段代码有什么问题吗?怎么在浏览器里面显示出来没有等于号“=”

写回答 关注

7回答

  • Fiona0126
    2015-02-08 22:31:19
    已采纳

    你的"="的那个input拼错了啊。。

  • 王二大
    2015-02-09 20:54:17

    谢谢,以后得多注意了!

  • 王二大
    2015-02-08 23:04:36

    多谢指点,按你说的改过后计算机确实可以运行了!可是我还是不是很明白,为什么

    result=document.getElementById('fruit').value和

    document.getElementById('fruit').value=result的运行结果不一样?

    Fiona0...

    一个是取值。一个是赋值~一个是把fruit里面的数取出来给result。另一个是把算好的result的值赋值给fruit

    2015-02-09 14:15:59

    共 1 条回复 >

  • 王二大
    2015-02-08 22:43:40

    这里确实错了,可是改回来了,计算器还是无法运行,点击等于号没有结果输出,还有错,求指点!

    Fiona0...

    还有就是你的最后。。应该是document.getElementById('fruit').value = result; 而不是取值。。。

    2015-02-08 22:46:51

    共 1 条回复 >

  • 王二大
    2015-02-08 22:40:31

    汗,惭愧,我总是犯些低级错误,多谢大虾!

  • 王二大
    2015-02-08 22:18:24

    有什么不一样吗?

  • Musikar
    2015-02-08 22:09:16
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    	<head>
    		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    		<title>事件</title>
    		<script type="text/javascript">
    			function count(){ 
    				var txt1,txt2,select,result; 
    				txt1=parseInt(document.getElementById('txt1').value); 
    				txt2=parseInt(document.getElementById('txt2').value); 
    				select=document.getElementById('select').value; 
    
    				switch(select){ 
    					case '+': 
    						result=txt1+txt2; 
    						break; 
    					case '-': 
    						result=txt1-txt2; 
    						break; 
    					case '*': 
    						result=txt1*txt2; 
    						break; 
    					case '/': 
    						result=txt1/txt2; 
    						break; 
    				} 
    				
    				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="txt" id="fruit"/>      
    </body>
    </html>


JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题