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

<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. Web程序安全机制

    ASP.NET提供了一个多层的安全模型,这个模型能够非常容易的保护Web应用程序. 安全策略没有必要非常复杂,但是需要应用安全策略的地方却是非常广泛的.程序员需要保证自己的应用程序不能被骗取,而把私有 ...

  2. 一、CSS的基础样式

    CSS的基础样式 border 边框 复合写法 border:border-width  border-style border-color: border-width:边框宽度 top right ...

  3. ndk书写位置的问题

    defaultConfig { applicationId "com.chenql.helloandroidjni" minSdkVersion 22 targetSdkVersi ...

  4. Gpupdate命令详解

    刷新本地和基于 Active Directory 的组策略设置,包括安全设置.该命令可以取代 secedit 命令中已经过时的 /refreshpolicy 选项. MS-DOS命令语法 gpupda ...

  5. DECLARE_DYNAMIC

    DECLARE_DYNAMIC(class_name) DECLARE_DYNCREATE 包含了DECLARE_DYNAMIC的功能,并且可以在运行过程中动态创建对象.如果需要动态创建类对象,需要使 ...

  6. vue04 组件化开发 Vue自动化工具

    5. 组件化开发 5.1 组件[component] 组件(Component)是自定义封装的功能.在前端开发过程中,经常出现多个网页的功能是重复的,而且很多不同的网站之间,也存在同样的功能. 而在网 ...

  7. Capture the Flag ZOJ - 3879(模拟题)

    In computer security, Capture the Flag (CTF) is a computer security competition. CTF contests are us ...

  8. mysql命令整理

    MySQL大小写通用. 一.常见用的mysql指令 1.show databases; #查看当前所有库 2.show tables; #查看所在库中的所有表 3.use 库名; #进入该库 4.sh ...

  9. ASP.NET误人子弟教程:在MVC下如何返回图片

    这几天忙着一些小事,也没有写什么了,今天,我们来玩一个比较简单的东东.就是在MVC下如何返回图片,相信,在传统WebForm下,大家都晓得怎么弄,方也不限于一种,但是,在架构较为严格的MVC里面,刚开 ...

  10. 20170704-WNDR4300uboot help info

    Unknown command 'env' - try 'help'ar7240> help? - alias for 'help'base - print or set address off ...