在 Chrome 中设置 location.href 两次

发布于 2024-12-10 02:28:12 字数 376 浏览 1 评论 0原文

我用来

location.href=document.getElementById("link1").href;
location.href=document.getElementById("link2").href;

运行与链接关联的脚本:

<a id="link1" href="javascript:...">
<a id="link2" href="javascript:...">

代码在 Firefox 中运行良好,但在 Chrome 中仅执行最后一个 location.href 命令(因此仅执行第二段 javascript 代码)。如何强制它执行第一次和第二次?

I'm using

location.href=document.getElementById("link1").href;
location.href=document.getElementById("link2").href;

to run the scripts associated to the links:

<a id="link1" href="javascript:...">
<a id="link2" href="javascript:...">

The code works fine in Firefox, but in Chrome only the last location.href command (and so only the second piece of javascript code) is executed. How can I force it to execute both the first time and the second one?

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

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

发布评论

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

评论(2

青衫负雪 2024-12-17 02:28:12

我也有类似的情况。我通过使用 setTimeout 函数稍微延迟第二个函数来解决这个问题,并且效果很好。

I had a similar situation. I solved it by using setTimeout function to delay the second one a bit and it works fine.

感情洁癖 2024-12-17 02:28:12

尝试将 JavaScript 代码放入函数中。

然后,您可以在单击链接时从链接中调用这些函数,也可以在任何其他需要的地方调用它们。
这是一种比使用 url 更稳定的运行代码方式。

Try putting your javascript code into functions.

You can then call those functions from the links when they are clicked, as well as anywhere else you need them.
This is a much more stable way of running code rather than with urls.

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