本文主要是介绍蜗牛—JavaScript学习之简易计算器,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
主要代码如下:
<!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=gb2312" /><title>简易计算器</title>
<script>function calNum(opt){var retObj = document.getElementById("txtresult");var num1 = parseInt(document.getElementById("txtNum1").value);var num2 = parseInt(document.getElementById("txtNum2").value);var ret = 0;switch(opt){case '+': ret=num1+num2;break;case '-':ret=num1-num2;break;case '*':ret=num1*num2;break;case '/':ret=num1/num2;break;}retObj.value=ret;
}</script>
</head><body><form acti
这篇关于蜗牛—JavaScript学习之简易计算器的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!