gpt4 book ai didi

javascript - 使用 javascript 在 html 中制作一个重定向按钮

转载 作者:行者123 更新时间:2023-12-03 02:34:18 25 4
gpt4 key购买 nike

以下是我尝试使用并嵌入 Google 协作平台页面的代码:

<!DOCTYPE html>
<html lang="en-US">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Please follow the link below</title>
<script>
var urls = [
"http://www.kittenwar.com/",
'http://heeeeeeeey.com/',
'http://eelslap.com/',
'http://www.staggeringbeauty.com/',
'http://www.omfgdogs.com/',
'http://burymewithmymoney.com/',
'http://www.fallingfalling.com/',
'http://ducksarethebest.com/',
'http://www.republiquedesmangues.fr/',
'http://www.trypap.com/',
];

function goSomewhere() {
var url = urls[Math.floor(Math.random()*urls.length)];
window.location = url; // redirect
}
</script>
</head>

<body>

</body>



</html>

如何实现此操作,以便在我的 Google 协作平台页面中出现一个按钮,该按钮会随机将您分配到列出的链接数组之一?

最佳答案

通过添加一个简单的按钮并调用 javascript 函数。您需要对您的谷歌网站帐户进行一些调整。您可以引用此链接在您的帐户中进行相应的更改。

http://www.thelandscapeoflearning.com/2014/05/did-you-know-google-sites-no-longer.html

并且

https://help.mofuse.com/hc/en-us/articles/226313408-Redirect-Setup-Google-Sites

 var urls = [
"http://www.kittenwar.com/",
'http://heeeeeeeey.com/',
'http://eelslap.com/',
'http://www.staggeringbeauty.com/',
'http://www.omfgdogs.com/',
'http://burymewithmymoney.com/',
'http://www.fallingfalling.com/',
'http://ducksarethebest.com/',
'http://www.republiquedesmangues.fr/',
'http://www.trypap.com/',
];

function goSomewhere() {
var url = urls[Math.floor(Math.random() * urls.length)];
window.location = url; // redirect
}
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Please follow the link below</title>
</head>

<body>
<button onclick="goSomewhere();">Redirect</button>
</body>

</html>

关于javascript - 使用 javascript 在 html 中制作一个重定向按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48599401/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com