我正在一个网站上工作,旁边有一个广告空间。我希望能够在每次加载页面时显示不同的广告。如果广告是纯图片,我知道该怎么做,但我也希望其中一些是 youtube 视频或其他媒体来源。
我想为此使用 javascript,但我想使用尽可能少的脚本。
任何帮助将不胜感激。
对于图像,我会使用如下代码:
<script type="text/javascript">
//Random Banner image on Page Reload
//store the images in arrays below
images = new Array(5);
images[0] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
images[1] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
images[2] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
images[3] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
images[4] = "<a href='http://www.example.com'><img src='some_image.gif'/></a>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
</script>