`
goto0917
  • 浏览: 48002 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论
  • take: 这是POI方式,不是JXLS方式. JXLS包路径都是net ...
    jxls

js2timeback

 
阅读更多
<script language=JavaScript>
var now = new Date();
function GetServerTime()
{
var urodz = new Date("12/31/2011 23:59:59");
now.setTime(now.getTime()+250);
days = (urodz - now) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (urodz - now) / 1000 / 60 / 60 - (24 * daysRound);
hoursRound = Math.floor(hours);
minutes = (urodz - now) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
minutesRound = Math.floor(minutes);
seconds = (urodz - now) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
secondsRound = Math.round(seconds);
document.getElementById("date").innerHTML = daysRound;
document.getElementById("time").innerHTML = hoursRound + ":" + minutesRound + ":" + secondsRound;
}
setInterval("GetServerTime()",250);
</script><p><span>距离2012年元旦还有</span><span id="date"></span><span class="white14b">天</span><span id="time"></span>
分享到:
| js1
评论

相关推荐

    Ionic.2.Cookbook.2nd.Edition.epub

    Leverage Ionic 2 and its exciting new features to create cutting edge real-time apps Work through simple recipes to address your problems directly and solve them effectively Get examples at each step ...

    Object.Oriented.JavaScript

    language is back, stronger than ever. Today's Web 2.0 world of AJAX, fat-client programming, desktop-like rich Internet applications, drag-and-drop maps and webmail clients, rely heavily on ...

    Vue.js 2 Cookbook-Packt Publishing(2017).epub

    Vue.js 2 is a minimal but powerful framework. It will empower you to quickly prototype small applications, and it won't get in the way when structuring large frontend systems. This is a cookbook and ...

    js 关闭窗口和关闭页面的几种方法

    #### 2. 自定义函数实现关闭窗口 可以通过自定义一个函数,在函数内部执行关闭操作。这种方式可以添加额外的逻辑处理,比如关闭前的提示等。 ```javascript function confirmClose() { if (confirm('确定要关闭此...

    Full Stack JavaScript(Apress,2015)

    This is a hands-on book which introduces you to agile JavaScript web and mobile software development using the latest cutting-edge front-end and back-end technologies including: Node.js, MongoDB, ...

    js滚动图片广告写法

    ### JS滚动图片广告实现方法详解 #### 一、概述 在网页设计中,滚动图片广告是一种常见的视觉展示方式,能够有效吸引用户注意力并提升用户体验。本文将深入解析一种基于JavaScript的滚动图片广告实现方法,包括...

    Full Stack JavaScript 无水印pdf 0分

    This is a hands-on book which introduces you to agile JavaScript web and mobile software development using the latest cutting-edge front-end and back-end technologies including: Node.js, MongoDB, ...

    The Definitive Guide to AdonisJs_Building Node.js App with JavaScript-2018

    This book is designed to teach you how to use AdonisJs....It is my hope that by the time you are finished reading this book, you’ll know all you need to know in order to build your online business.

    tweenjs.min.js文件

    function Ticker(){throw"Ticker cannot be instantiated."}Ticker.RAF_SYNCHED="synched",Ticker.RAF="raf",Ticker.TIMEOUT="timeout",Ticker.timingMode=null,Ticker.maxDelta=0,Ticker.paused=!1,Ticker....

    107个常用javascript语句

    49.引用一个文件式的JS:&lt;script type="text/javascript" src="aaa.js"&gt; 50.指定在不支持脚本的浏览器显示的HTML:&lt;noscript&gt;&lt;/noscript&gt; 51.当超链和onCLICK事件都有时,则老版本的浏览器转向a.html,否则转向b.html.例...

    javascript

    ### 2. 进入主页后自动最大化 - **代码示例**: ```javascript self.moveTo(0, 0) self.resizeTo(screen.availWidth, screen.availHeight) ``` - **解释**:这段JavaScript代码首先使用`moveTo()`方法将窗口移动...

    A Smarter Way to Learn JavaScript.pdf

    日期和时间的操作在JavaScript中也有其特有的方法,本书中讲解了获取当前日期和时间(Getting the current date and time)、提取日期和时间的各个部分(Extracting parts of the date and time)、指定日期和时间...

    JavaScript页面倒计时功能完整示例

    - `timeBack` 使用`setInterval`函数每秒执行一次。该函数减去1000毫秒(即1秒)并更新页面上的时间显示。 - `formatDate` 函数用于将剩余的毫秒数转换为小时、分钟和秒的格式,并确保每个单位前面都有零填充,...

    点击回顶部js脚本

    在JavaScript(JS)中实现这个功能并不复杂,下面我们将深入探讨其背后的原理和实现方法。 首先,我们需要在HTML页面中添加一个用于触发此功能的元素,通常是一个按钮或者链接。例如,我们可以创建一个固定在屏幕...

    zombie-time-back

    僵尸时间! 僵尸时间! 是一款多人网络桌面游戏,其中一群幸存者试图生存到僵尸世界末日,同时实现一些共同的个人目标。运行服务器要安装项目... 最后,要在build文件夹中创建项目的可发行版本,请运行./gradlew build

    JavaScript基本的入门

    - `setTimeout(func, time)`:设置一个延时调用函数。 - `clearTimeout(timeoutID)`:取消之前设置的延时。 #### 五、Document 对象与 DOM ##### 5.1 概念 DOM (Document Object Model) 是一种标准,用于定义...

    源码+书Hands-on Data Structures and Algorithms with JavaScript

    What you will learnBuild custom Back buttons embedded within your applicationBuild part of a basic JavaScript syntax parser and evaluator for an online IDEBuild a custom activity user tracker for your...

    A samart way to learn javascript

    29. Getting the current date and time(获取当前日期和时间):学习如何在JavaScript中获取系统当前日期和时间。 30. Extracting parts of the date and time(提取日期和时间的部分):从日期对象中提取特定部分...

    网页模板——回到网页顶部的JS代码.zip

    2. **添加JavaScript代码**:接下来,我们需要编写JavaScript来监听滚动事件并处理按钮的行为。在`&lt;head&gt;`或`&lt;body&gt;`标签内添加`&lt;script&gt;`标签,或者在外部JS文件中编写代码,然后通过`&lt;script src="yourfile.js"&gt;...

    浅述Javascript的外部对象

    2. 对话框功能是用户交互的重要组成部分,JavaScript提供了三个简单的对话框函数:alert、confirm和prompt。 - alert(str)会弹出一个提示对话框,其中包含传入的字符串信息。 - confirm(str)会弹出一个确认...

Global site tag (gtag.js) - Google Analytics