计算器网页效果显示:点击这里!

<script> 

function show(){ 

var date = new Date(); //日期对象 

var now = ""; 

now = date.getFullYear()+"年"; //读英文即可了 

now = now + (date.getMonth()+1)+"月"; //取月的时候取的是当前月-1假设想取当前月+1就能够了 

now = now + date.getDate()+"日"; 

now = now + date.getHours()+"时"; 

now = now + date.getMinutes()+"分"; 

now = now + date.getSeconds()+"秒"; 

document.getElementById("nowDiv").innerHTML = now; //div的html是now这个字符串 

setTimeout("show()",1000); //设置过1000毫秒就是1秒,调用show方法 



</script>





<!DOCTYPE html> 

<html> 

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<head> 

<title>Calculator</title> 





<!--将按键内容以字符串形式存储在文字框中当button为“=”时。调用eval方法计算结果然后将结果输出文字框中--> 

<script type="text/javascript"> 

var numresult; 

var str; 

function onclicknum(nums) { 

str = document.getElementById("nummessege"); 

str.value = str.value + nums; 



function onclickclear() { 

str = document.getElementById("nummessege"); 

str.value = ""; 



function onclickresult() { 

str = document.getElementById("nummessege"); 

numresult = eval(str.value); 

str.value = numresult; 



</script> 





<style type="text/css">

img{

  position:absolute;

  left:1100px;

  top:100px;

  }

</style>

</head> 

<body>   <!用来显示时间>

<h2 align=right><font color="#cc0033">

<body onload="show()">   <!-- 网页载入时调用一次 以后就自己主动调用了--> 

<div id="nowDiv"></div> 

</font></h2>

</body>

<body bgcolor="#9900ff" > 

<a  href="../index.html"><img border="0" src="./image/4.jpg" alt="主页面" title="返回主页面"></a>





<font color="red" size="6"><center>网络人VS灰鸽子工作室</center></font>

<p></p>

<!--定义按键表格,每一个按键相应一个事件触发--> 

<table border="1" align="center" bgColor="#6633CC" 

style="height: 350px; width: 270px"> 

<tr> 

<td colspan="4"> 

<input type="text" id="nummessege" 

style="height: 90px; width: 350px; font-size: 50px" /> 

</td> 

</tr> 

<tr> 

<td> 

<input type="button" value="1" id="1" onclick="onclicknum(1)" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="2" id="2" onclick="onclicknum(2)" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="3" id="3" onclick="onclicknum(3)" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="+" id="add" onclick="onclicknum('+')" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

</tr> 

<tr> 

<td> 

<input type="button" value="4" id="4" onclick="onclicknum(4)" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="5" id="5" onclick="onclicknum(5)" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="6" id="6" onclick="onclicknum(6)" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="-" id="sub" onclick="onclicknum('-')" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

</tr> 

<tr> 

<td> 

<input type="button" value="7" id="7" onclick="onclicknum(7)" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="8" id="8" onclick="onclicknum(8)" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="9" id="9" onclick="onclicknum(9)" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="*" id="mul" onclick="onclicknum('*')" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

</tr> 

<tr> 

<td colspan="2"> 

<input type="button" value="0" id="0" onclick="onclicknum(0)" 

style="height: 70px; width: 190px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="." id="point" onclick="onclicknum('.')" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

<td> 

<input type="button" value="/" id="division" 

onclick="onclicknum('/')" 

style="height: 70px; width: 90px; font-size: 35px"> 

</td> 

</tr> 

<tr> 

<td colspan="2"> 

<input type="button" value="Del" id="clear" 

onclick="onclickclear()" 

style="height: 70px; width: 190px; font-size: 35px" /> 

</td> 

<td colspan="2"> 

<input type="button" value="=" id="result" 

onclick="onclickresult()" 

style="height: 70px; width: 190px; font-size: 35px" /> 

</td> 

</tr> 

</table> 

    <font size="5" color="ff99ff">Design by:<a target="_blank" href="http://blog.csdn.net/qq_21792169/article/details/50629515"
>网络人VS灰鸽子</a> 2016-3-3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;邮箱:linux_drv@yeah.net</font>

<! 这里为了方便我就直接加入空格来布局了,这里能够使用style>

</body> 

</html>

HTML网页之计算器代码的更多相关文章

  1. Bootstrap css栅格 + 网页中插入代码+css表格

    设计达人 http://www.shejidaren.com/30-minimal-app-icons.html CSS栅格: <!DOCTYPE html> <html lang= ...

  2. 网页嵌入WMP代码(转)

    网页嵌入WMP代码 播放器代码解释,装了9.0或9.0以上的播放器才能正常使用: OBJECT id="WMP" height="176" width=&quo ...

  3. 总结PHP中几种常用的网页跳转代码

    网页跳转的意思就是指当你在浏览器中访问A页面时,会自动跳转到B页面,往往网页跳转用在404页面中会比较多点.至于怎么实现网页跳转,网上已经提供了很多的方法,有些方法是不可行的,经过测试,叶德华今天就在 ...

  4. python爬取网页的通用代码框架

    python爬取网页的通用代码框架: def getHTMLText(url):#参数code缺省值为‘utf-8’(编码方式) try: r=requests.get(url,timeout=30) ...

  5. spring-mvc实现模拟数据到网页展示过程代码

    spring-mvc实现模拟数据到网页展示过程代码 先看看我们的3种模拟数据到网页展示的思路图: 1.当mybatis的环境配置完成.一个动态Web项目建立好.开始导入jar包. -spring的ao ...

  6. C#和网页js互调代码

    C#和网页js互调代码 1.先写个网页放在主程序目录下:test.html <!DOCTYPE html> <html lang="en" xmlns=" ...

  7. js加减乘除在线计算器代码

    js加减乘除在线计算器代码 在线演示本地下载

  8. 四种ASP网页跳转代码

    时间:2012-06-12 21:12来源:未知 输入:铜都风尘 点击: 32987 次 如果你要在服务器端跳转,可以这样: Response.Redirect(http://blog.163.com ...

  9. 73种网页常用Javascript代码

    73种网页常用Javascript代码 转载自:前端丶灵魂工程师   1.后退 前进  <input type="button" value="后退" o ...

随机推荐

  1. sqlite学习笔记之sqlite3_open函数的使用

    作者:朱金灿 来源:http://blog.csdn.net/clever101 打开sqlite数据库需要用到sqlite3_open函数,但是sqlite3_open函数的第一个参数是数据库文件的 ...

  2. 使用TFS創建團隊項目

    使用微軟賬號登錄Team Service,關聯一個TS賬戶,用來存放你所有的項目,可以從瀏覽器中直接訪問,地址類似yourname.visualstudio.com. 詳細鏈接 在TS賬戶主面板中,可 ...

  3. 14、Scala类型参数

    1.泛型类 2.泛型函数 3.上边界Bounds 4.下边界Bounds 5.View Bounds 6.Context Bounds 7.Manifest Context Bounds 8.协变和逆 ...

  4. id拼接保存到单个字段后作为表连接的查询条件

    SELECT q.id, concat(q. NAME) qname, d.id did, d. NAME FROM question_po q LEFT JOIN data_configuratio ...

  5. git clone下载代码,中途断掉怎么办?

    问题如下: 解决办法: 1)运行以下命令进行clone $ git clone --recursive https:xxxxxx 2)进入项目根目录,继续下载 $ cd eigen-git-mirro ...

  6. 【剑指Offer】66、机器人的运动范围

      题目描述:   地上有一个m行和n列的方格.一个机器人从坐标0,0的格子开始移动,每一次只能向左,右,上,下四个方向移动一格,但是不能进入行坐标和列坐标的数位之和大于k的格子. 例如,当k为18时 ...

  7. CentOS7搭建KMS服务器

    使用vlmcsd搭建KMS服务器 1.下载vlmcsd: wget https://github.com/Wind4/vlmcsd/releases/download/svn1111/binaries ...

  8. 1040 有几个PAT (25 分)

    题目链接:1040 有几个PAT (25 分) 做这道题目,遇到了新的困难.解决之后有了新的收获,甚是欣喜! 刚开始我用三个vector数组存储P A T三个字符出现的位置,然后三层for循环,根据字 ...

  9. UVA1001 Say Cheese(Dijkstra或Floyd)

    题目链接:UVA1001 题意:在一个巨大奶酪中的A要以最短的时间与B相遇.在奶酪中走一米的距离花费的时间是10s,而奶酪中有许多洞,穿过这些洞的时间是0s.给出A.B以及各个洞的坐标,求最短的时间. ...

  10. python--(协程 和 I/O多路复用)

    python--(协程 和 I/O多路复用) 一.协程 1. >>>单线程下实现并发, 最大化线程的效率, 检测 IO 并自动切换,程序级别的任务切换, 之前多进程多线程都是系统级别 ...