网页特效 一“码”当先(31)
比如让这个图片在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>