JavaScript设置标题栏或者状态栏动态显示时间


例1:实现标题栏动态显示系统时间。



<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title> test title>
  <meta charset="utf-8" />
  <meta name="generator" content="editplus" />
  <meta name="author" content="" />
  <meta name="keywords" content="" />
  <meta name="description" content="" />
 head>
<script type="text/javascript">

script>
 <body onload = "init()">

 body>
html>

例2:实现浏览器的状态栏动态显示系统时间。



<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title> test title>
  <meta charset="utf-8" />
  <meta name="generator" content="editplus" />
  <meta name="author" content="" />
  <meta name="keywords" content="" />
  <meta name="description" content="" />
 head>
<script type="text/javascript">

script>
 <body onload = "init()">

 body>
html>

以上测试于IE11。
以上内容作为个人学习记录,仅供参考。

你可能感兴趣的:(JavaScript)