Javascript 在重定向前显示两次警报

发布于 2024-10-06 02:43:57 字数 208 浏览 4 评论 0原文

<script type="text/javascript">
<!--

alert('You will be redirected');


window.location = "http://www.google.com/"

//-->
</script>

如何更改代码以便在重定向到谷歌之前警报显示两次?

<script type="text/javascript">
<!--

alert('You will be redirected');


window.location = "http://www.google.com/"

//-->
</script>

How to change the code so that the alert is shown twice before redirecting to google?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请帮我爱他 2024-10-13 02:43:57
<script type="text/javascript">
<!--

alert('You will be redirected');
alert('You will be redirected');


window.location = "http://www.google.com/"

//-->
</script>

我不知道你为什么要这样做,但这会做你想要的。

<script type="text/javascript">
<!--

alert('You will be redirected');
alert('You will be redirected');


window.location = "http://www.google.com/"

//-->
</script>

Why you'd want to do this I don't know, but that will do what you want.

雪落纷纷 2024-10-13 02:43:57
<script type="text/javascript">
<--
for(vari=0;i<2;i++)
  {
    alert('You will be redirected');
  }

window.location = "http://www.google.com/"

 //-->
</script>
<script type="text/javascript">
<--
for(vari=0;i<2;i++)
  {
    alert('You will be redirected');
  }

window.location = "http://www.google.com/"

 //-->
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文