⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 5-5 简单的javascript计算器.htm

📁 JAVASCRIPT完全自学手册,中源码的验证修订实例
💻 HTM
字号:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=GB2312" />
<title>5-5  简单的JavaScript计算器</title>
<!-- 脚本部分 -->
<script>
function calc(){
    try{
        document.getElementById("txt_formula").value = eval(document.getElementById("txt_formula").value);
    }catch(e){
        document.getElementById("txt_formula").value = "错误的算式";
    }
}
</script>
</head>
<body style="overflow:auto;">
<label>输入要计算的算式:</label>
<input id="txt_formula">
<input type="button" value="计算" onclick="calc();">
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -