7-2.htm

来自「JScript网页特效,包含很多的实现网页特效的方法.」· HTM 代码 · 共 53 行

HTM
53
字号
<html>
<head>
<title>§7.2 随机显示的广告条图片</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body bgcolor="#FFFFFF">

<script language="JavaScript">
<!--//Begin code
var ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % ads;
ad +=1;
if (ad==1) {
txt="欢迎使用实战JavaScript 100例";
url="http://www.yourhome1.com";
alt="javascript";
banner="./banner1.gif";
width="468";
height="60";
}
if (ad==2) {
txt="希望本书对你有所帮助";
url="http://www.yourhome1.com";
alt="javascript";
banner="./banner2.gif";
width="468";
height="60";
}
if (ad==3) {
txt="欢迎你给我来信!"; 
url="mailto:future3@yeah.net";
alt="javascript";
banner="./banner3.gif";
width="468";
height="60";
}
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small>' + txt + '</small></a>');
document.write('</center>');
 //End code
-->
</script>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?