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

<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. MVC系列学习(三)-EF的延迟加载

    1.什么叫延迟加载 字面上可以理解为,一个动作本该立即执行的动作,没有立即执行 2.从代码上理解 static void Main(string[] args) { //执行该语句的时候,查看sql监 ...

  2. jQuery中国各个省份地图分部代码

    jQuery中国各个省份地图分部代码 在线演示本地下载

  3. React Native常用组件在Android和IOS上的不同

    React Native常用组件在Android和IOS上的不同 一.Text组件在两个平台上的不同表现 1.1 height与fontSize 1.1.1只指定font,不指定height 在这种情 ...

  4. [Android]异常9-自定义PopupWindow出现闪屏

    背景: 自定义PopupWindow使用时,Android4.0或者一些手机正常使用,Android6.0或者部分手机使用自定义PopupWindow触发事件时,出现闪屏 异常原因: 可能一>A ...

  5. html中设置浏览器解码方式

    通过添加一行标签: <meta http-equiv="Content-Type" content="text/html; charset=utf-8"& ...

  6. Nagios事件机制实践

    Nagios事件机制实践  blog地址:http://www.cnblogs.com/caoguo 一.事件触发执行脚本 [root@Nagios ~]# cd /usr/local/nagios/ ...

  7. JAVA中EXTENDS 与 IMPLEMENT 区别

    简单说: 1.extends是继承父类,只要那个类不是声明为final或者那个类定义为abstract的就能继承,2.JAVA中不支持多重继承,但是可以用接口来实现,这样就要用到implements, ...

  8. Android 动态设置 layout_centerInParent

    RelativeLayout.LayoutParams rp = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutPa ...

  9. CAD在网页中如何得到用户自定义事件的参数?

    主要用到函数说明: _DMxDrawX::CustomEventParam 得到用户自定义事件的参数. js代码实现如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ...

  10. Git:文件操作和历史回退

    目录 创建仓库 创建文件/文件夹 修改文件/文件夹 回到修改前的版本 撤销修改 删除文件 工作区.暂存区.版本区 创建仓库 创建新文件夹:mkdir learngit 进入:cd learngit l ...