怎么在网页上制作一个简易计算器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么在网页上制作一个简易计算器相关的知识,希望对你有一定的参考价值。
<!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" />
<script type="text/javascript" src="file:///C|/Users/hp/Documents/JQuerySite/jquery-1.9.0.js"></script>
<script type="text/javascript">
function calculate(type)
var result=0;
num1=Number(document.form1.num1.value);
num2=Number(document.form1.num2.value);
if(num1==""||num2=="")return false;
swicth(type)
case 0;result=num1+num2;
case 1;result=num1-num2;
case 2;result=num1*num2;
case 3;result=num1/num2;
document.form1.circulate.value=result;
</script>
<title>无标题文档</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<input type="text" name="num1" />
<select name="select" size="1" id="select">
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<input type="text" name="num2" />
=
<input type="text" name="textfield3" />
<input name="circulate" type="button" id="circulate" value="计算" onclick="abc()" />
</form>
</body>
</html>
我是JAVASCRIPT新手,怎么在网页做一个简易计算器。
要求是输入2个数,然后在下拉列表中选择一个运算符,点击计算,计算加减乘除的结果,想问一下下拉列表中的加减乘除如何和计算按钮一一对应呢?就是这个不会,求高人解答。
(2)然后每个数字 符号绑定一个事件,这个事件获取数字或者符号的值,放进一个Input框;
(3)点击计算,把Input框的字符串表达式计算,eval("1*2");
(4)还有计算前要对表达式进行校验,不规则的表达式不能计算。 参考技术A <!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" />
<script type="text/javascript" src="file:///C|/Users/hp/Documents/JQuerySite/jquery-1.9.0.js"></script>
<script type="text/javascript">
function calculate(type)
var result=0;
num1=Number(document.form1.num1.value);
num2=Number(document.form1.num2.value);
if(num1==""||num2=="")return false;
switch (type)
case 0:
result=num1+num2;
break;
case 1:
result=num1-num2;
break;
case 2:
result=num1*num2;
break;
case 3:
result=num1/num2;
break;
document.form1.textfield3.value=result;
</script>
<title>无标题文档</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<input type="text" name="num1" />
<select name="select" size="1" id="select">
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<input type="text" name="num2" />
=
<input type="text" name="textfield3" />
<input name="circulate" type="button" id="circulate" value="计算" onclick="calculate(document.form1.select.selectedIndex)" />
</form>
</body>
</html>追问
为什么没有效果?
追答代码没错,验证过才发上来的,复制完整代码到文本文件里,后辍改成html.如果还不行自已检查下其它问题
追问按照你说的复制进记事本,然后网页打开,依旧不行
追答有弹出javascript脚本错误吗?
本回答被提问者和网友采纳 参考技术B 手机页面设置计算机网页制作:一个简易美观的登录界面
这次来总结一下公司的Task 1 实现一个登录界面。
登录界面其实在大三的时候就有做过,但是当时做的界面超级low,主要区别在于有无css,由于公司的设计要求,对于该界面的很多细节处理实在不容易。所以,还是想要写点东西记录一下。
先截个图,展示一下效果吧:
然后我们看一下代码:
在我们做一个页面之前,要先想好他的一个整体布局,也就是我们这里面的login.html主页面,大致结构如下:
接下来,我们先上代码,看一下具体实现方法:
login.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录页面</title>
<link rel="stylesheet" type="text/css" href="login.css"/>
<script type="text/javascript" src="login.js"></script>
</head>
<body>
<div id="login_frame">
<p id="image_logo"><img src="images/login/fly.png"></p>
<form method="post" action="login.js">
<p><label class="label_input">用户名</label><input type="text" id="username" class="text_field"/></p>
<p><label class="label_input">密码</label><input type="text" id="password" class="text_field"/></p>
<div id="login_control">
<input type="button" id="btn_login" value="登录" onclick="login();"/>
<a id="forget_pwd" href="forget_pwd.html">忘记密码?</a>
</div>
</form>
</div>
</body>
</html>
说明:
在这个html里面,我们主要对登录界面进行了整体布局规划,利用div将内部的窗口、图片、标签、输入框、按钮、链接进行分块,这样方便我们之后用css对其进行准确的调位置、调边距。同时也对重要的几个东西设置了id和class,这也是方便我们之后用css对其进行准确的调颜色、调字体。
login.js
/**
* Created by Kay on 2016/3/8.
*/
function login()
var username = document.getElementById("username");
var pass = document.getElementById("password");
if (username.value == "")
alert("请输入用户名");
else if (pass.value == "")
alert("请输入密码");
else if(username.value == "admin" && pass.value == "123456")
window.location.href="welcome.html";
else
alert("请输入正确的用户名和密码!")
说明:
这个js是用来判断用户名和密码是否正确的,实现起来还算简单。
可以记一下,界面跳转的语句:
window.location.href="welcome.html";
其次就是对输入框的返回值的获取,这里我们用到了document.getElementById的知识点,通过document的对象方法来获得指定ID值的对象。这里要注意是byId,所以前面的html里的username和password要设id值,而不是name值,不然获取不到的!
关于document的介绍可以点击该链接:详解JavaScript Document对象
login.css
body
background-image: url("images/login/loginBac.jpg");;
background-size: 100%;
background-repeat: no-repeat;
#login_frame
width: 400px;
height: 260px;
padding: 13px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -200px;
margin-top: -200px;
background-color: rgba(240, 255, 255, 0.5);
border-radius: 10px;
text-align: center;
form p > *
display: inline-block;
vertical-align: middle;
#image_logo
margin-top: 22px;
.label_input
font-size: 14px;
font-family: 宋体;
width: 65px;
height: 28px;
line-height: 28px;
text-align: center;
color: white;
background-color: #3CD8FF;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
.text_field
width: 278px;
height: 28px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border: 0;
#btn_login
font-size: 14px;
font-family: 宋体;
width: 120px;
height: 28px;
line-height: 28px;
text-align: center;
color: white;
background-color: #3BD9FF;
border-radius: 6px;
border: 0;
float: left;
#forget_pwd
font-size: 12px;
color: white;
text-decoration: none;
position: relative;
float: right;
top: 5px;
#forget_pwd:hover
color: blue;
text-decoration: underline;
#login_control
padding: 0 28px;
说明:
这个css就是最难部分了,界面之所以能达到如此美观的效果,比如登录的窗口要在屏幕居中显示、背景透明、框的四个角要有一点弧度、登录按钮与输入框上下对齐等等。
摘要:
①让背景图片拉伸且占据整个屏幕:
background-size: 100%;
background-repeat: no-repeat;
②让一个div块在整个屏幕居中:
width: 400px;
height: 260px;
padding: 13px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -200px;
margin-top: -200px
(其中的margin-left:和margin-top最好是设为width和height的一半值,那样是完全居中的效果,当然记得前面要加个负号!)
③设置圆角:
text-align: center;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
④设置背景颜色且加透明效果:
background-color: rgba(240, 255, 255, 0.5);
⑤让输入框和label对齐居中:
form p > *
display: inline-block;
vertical-align: middle;
⑥去除链接的下划线:
text-decoration: underline;
7、给一个label或者button里面的文字设置居中:
width: 120px;
height: 28px;
line-height: 28px;
text-align: center;
(需要设置line-height 其值等于 height 也就是字的行高等于它所在的label、button的高!)
8、给“登录”和“忘记密码”的中间设置间距:
先在html里给他们绑定一块div:
<div id="login_control">
<input type="button" id="btn_login" value="登录" οnclick="login();"/>
<a id="forget_pwd" href="forget_pwd.html">忘记密码?</a>
</div>
然后在css里设置一下padding:
#login_control
padding: 0 28px;
该例子的代码为您提供免费下载,下载地址:点击打开链接
(另外,该案列的升级版,也就是稍微复杂一点的登录界面,可点此处下载代码:点击打开链接2.0版)
以上是关于怎么在网页上制作一个简易计算器的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript练习---[JS动态切换图片效果;JS完成简易计算器, 下拉框切换头像, JS 制作简易文本编辑器]