gpt4 book ai didi

javascript - 如何制作一个html随机重定向

转载 作者:行者123 更新时间:2023-11-30 09:55:14 25 4
gpt4 key购买 nike

我将如何制作一个在多个(在本例中为 2 个)网站之间随机重定向的网站?

显然,由于我希望是元标记,下面的内容不起作用;我想知道 javascript 代码是否是执行此操作的正确方法 以及它是如何工作的。

<head>
<meta http-equiv="refresh" content="1;url=http://example1.com">
<script type="text/javascript">
if Math.random() =< 0.5;
window.location.href = "http://example1.com/"
else;
window.location.href = "http://example2.com"
</script>
<title>Page Redirection</title>
</head>

最佳答案

你的 script 标签内的 javascript 语法也不正确

<script type="text/javascript">
if ( Math.random() <= 0.5 ) //proper parenthesis surrounding the condition and also < will come before =
window.location.href = "http://example1.com/";
else //semicolon removed from here
window.location.href = "http://example2.com";
</script>

关于javascript - 如何制作一个html随机重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34390497/

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