如何使一个超链接给出不同的页面?

时间:2017-07-03 19:49:32

标签: html

我试图设置一个超链接,该链接将从URL列表中每次点击随机打开一个不同的网页。有谁知道什么是一个很好的功能开始实现这一目标?

1 个答案:

答案 0 :(得分:0)

喜欢这个吗?

 <!DOCTYPE html>
<html>
<head>
<script>
var links = ['http://google.com', 'http://facebook.com']
function GoToSomeAddress() {
    window.open(links[getRandomInt(0, 1)]);
}

function getRandomInt(min, max) {
  return Math.floor(Math.random() * (max - min + 1)) + min;
}
</script>
</head>
<body>
The content of the body element is displayed in your browser.
<a href="" onclick="GoToSomeAddress();return false;">Take me on an adventure</a>
</body>

</html>