Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
time.js
Package: ASP.RAR [view]
Upload User: xhjd888
Upload Date: 2022-07-20
Package Size: 203k
Code Size: 0k
Category:
.net
Development Platform:
Visual Basic
- function showtime(){
- var now=new Date()
- var hours=now.getHours()
- var minutes=now.getMinutes()
- var seconds=now.getSeconds()
- var timeValue=""+((hours>12)?hours-12:hours)
- timeValue +=((minutes<10)?":0":":")+minutes
- timeValue +=((seconds<10)?":0":":")+seconds
- timeValue +=(hours>=12)?"下午":"上午"
- //document.kemoon.face2.value="现在时间"+timeValue
- document.all("thename").innerText=timeValue
- setTimeout("showtime()",1000)
- }