需要为随机图像/链接加载脚本在Javascript代码上添加到_blank的着陆

时间:2018-10-08 23:52:08

标签: javascript

我在这里有一个广告旋转脚本,但是没有一行可以使链接在空白页面和父页面上显示。或显示详细信息的任何地方。

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>');

1 个答案:

答案 0 :(得分:1)

可以。在创建的链接中添加一个target

document.write('<a target="_blank" href="http://' + randomlink[x] + '">');