我在这里有一个广告旋转脚本,但是没有一行可以使链接在空白页面和父页面上显示。或显示详细信息的任何地方。
function randomzero (n)
{
return ( Math.floor ( Math.random ( )*0.9999999999999999* (n + 1)) );}
//IV. assign any random number from 0 to 2 to x.
x = randomzero(4);
//V. display the image
document.write('<a href="http://' + randomlink[x] + '">');
document.write('<img alt="random ad banner"src="' + randompic[x] + '"/>');
document.write('</a>');
答案 0 :(得分:1)
可以。在创建的链接中添加一个target
:
document.write('<a target="_blank" href="http://' + randomlink[x] + '">');