图片自动更新(说明)
时间:2022-07-28 11:00:53|栏目:JavaScript代码|点击: 次
这是个“懒人”用的办法,你没有时间更新主页,却又不能让三个月前的更新还标着"new",那么用这个js可以帮你的大忙!
这个图片将在2000年1月1日自动消失。
copy下面的代码到你的html文件的<body>和</body>之间:
<script>
<!--
var imagetag='<img src="news.gif" alt="1">' var today=new Date() function expireat(expiredate){ var expire=new Date(expiredate) if (today.getTime()<=expire.getTime()) document.write(imagetag) }
//-->
</script>
<script>
expireat("january 1, 2000")
</script>
这个图片将在2000年1月1日自动消失。
copy下面的代码到你的html文件的<body>和</body>之间:
复制代码 代码如下:
<script>
<!--
var imagetag='<img src="news.gif" alt="1">' var today=new Date() function expireat(expiredate){ var expire=new Date(expiredate) if (today.getTime()<=expire.getTime()) document.write(imagetag) }
//-->
</script>
<script>
expireat("january 1, 2000")
</script>
上一篇:js中的循环方式及各种遍历的方法
栏 目:JavaScript代码
本文标题:图片自动更新(说明)
本文地址:http://www.codeinn.net/misctech/209118.html