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