本文共 912 字,大约阅读时间需要 3 分钟。
php练习-四则计算器
一.重点:js的dom元素的练习
二.代码如下:
<!DOCTYPE html>
<html><head><meta charset="UTF-8"/><title> 计算器</title> <script type="text/javascript">function count(){ var d = "";var a=document.getElementById("txt1").value; //a的值var b=document.getElementById("txt2").value;//b的值var c=document.getElementById("select").value;//运算符号的值switch(c){ case "+"://d = a + b;转为整数d = parseInt(a)+parseInt(b);break;case "-":d = a-b;break;case "":d = ab;break;default:d = a/b;}document.getElementById("fruit").value = d;}
</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='=' οnclick="count()"/><input type='text' id='fruit' /> </body></html>三.页面输出:
转载于:https://blog.51cto.com/anfishr/2134821