源自:6-11 编程练习
请各位帮我看看哪里错了,就是运行不了
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var txt1=parseInt(var = document.getElementById("txt1").value); //获取第一个输入框的值
var txt2=parseInt(var = document.getElementById('txt2').value); //获取第二个输入框的值
var select=document.getElementById('select').value; //获取选择框的值
var result = '';
switch (select)
{case'+':
result='txt1'+'txt2';
break;
case'-':
result='txt1'-'txt2';
break;
case'*':
result='txt1'*'txt2';
break;
case'/':
result='txt1'/'txtx2';
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='text' id='fruit' />
</body>
</html>
提问者:暴走大熊
2015-12-27 21:11
个回答
-
<!doctype html>
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var txt1=parseInt(document.getElementById("txt1").value); //这里txt1) 反括号错误
var txt2=parseInt(document.getElementById('txt2').value); //这里txt1) 反括号错误
var select=document.getElementById('select').value;
var result = '';
switch (select)
{case'+':
result=txt1+txt2;//这里去掉单引号 因为是变量
break;
case'-':
result=txt1-txt2;//这里去掉单引号 因为是变量
break;
case'*':
result=txt1*txt2;//这里去掉单引号 因为是变量
break;
case'/':
result=txt1/txt2;//这里去掉单引号 因为是变量 txt2误写成txtx2
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='text' id='fruit' />
</body>
</html>
//例如除数不能为零 等细节 多注意就可以了
-
var txt1=parseInt(document.getElementById("txt1").value); //获取第一个输入框的值
var txt2=parseInt(document.getElementById('txt2').value);// ")"写成了中文格式,去掉"var="
{case'+':
result=txt1+txt2;//去掉引号,如果有引号就表示是字符串而不是变量
break;
case'-':
result=txt1-txt2;
break;
case'*':
result=txt1*txt2;
break;
case'/':
result=txt1/txtx2;
break;
}