宝宝的胖嘟666
2020-07-16 16:38
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var x=document.getElementById("txt1").value;
var y=document.getElementById("txt2").value;
var sel=document.getElementById("select").value;
var fur=0;
switch(sel)
{case"+";
fur=parseInt(x)+parseInt(y);
break;
case"-";
fur=parseInt(x)-parseInt(y);
break;
case="*";
fur=parseInt(x)*parseInt(y);
break;
case="/";
fur=parseInt(x)/parseInt(y);
break;
}
document.getElementById("fruit").value =fur;
}
</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>
兄die,你这个改改哈
把标点改成:
把不必要的等号去掉
应该就pass了
多谢指点,谢谢
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题