链接到另一个页面上的 javascript 链接

发布于 2024-10-16 01:07:08 字数 405 浏览 2 评论 0原文

带有 JS 链接的目标页面:
dest.htm

<html>
..
<a href="javascript:function(parameters);">JS LINK</a>
..
</html>

原始页面:
origin.htm

<html>
..
<a href="dest.htm">Destination page</a>
..
</html>

目前,我正在链接到目标页面。然后用户必须手动单击 JS 函数链接。我可以链接到目标页面,以便在页面加载时启动适当的功能吗?

Destination page with JS link:
dest.htm

<html>
..
<a href="javascript:function(parameters);">JS LINK</a>
..
</html>

Origin page:
origin.htm

<html>
..
<a href="dest.htm">Destination page</a>
..
</html>

Currently, I am linking to the destination page. The user has to then click on the JS function link manually. Can I link to the destination page, such that, on page load, the appropriate function is initiated?

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

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

发布评论

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

评论(2

鲸落 2024-10-23 01:07:08

也许 dest.html 上的 就足够了? :)

Maybe <body onload="your_function()"> on a dest.html is enough? :)

完美的未来在梦里 2024-10-23 01:07:08

不直接。但是您可以使用特殊的 querystring 来调用该站点,该查询字符串可以由目标页面中的 javascript 检测到。

origin.htm

<a href="dest.htm#foo">Destination page</a>

dest.htm

<script>
    if(location.hash === '#foo') {
         yourfunction();
    }
</script>

Not directly. But you can call the site with a special querystring, which can be detected by your javascript in your destination page.

origin.htm

<a href="dest.htm#foo">Destination page</a>

dest.htm

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