如何在加载新的 HTML 页面后加载 js 函数?

发布于 2024-10-10 01:36:59 字数 315 浏览 8 评论 0原文

我想知道是否有办法执行以下操作:

我在 root 上有一个页面:“index.html”,有 2 个链接。每个链接都有一个指向“reader/index.html”的onclick。之所以有两个链接,是因为我希望链接在页面加载后立即调用“reader/index.html”上的不同函数。有办法做到这一点吗?

我知道如何在页面加载完成后使用 onload 调用函数,但不知道如何使用 onload 根据 调用不同的函数onclick 来自上一页。这里完全被难住了。非常感谢任何帮助。

I wonder if there's a way to do the following:

I have a page on root: "index.html" that has 2 links. Each link has an onclick that directs to "reader/index.html". The reason for the two links is because I want the links to call different functions on "reader/index.html" immediately after the page is loaded. Is there a way to do this?

I know how to use onload to call a function after a page finished loading, but can't figure out how to use onload to call different functions depending on an onclick from the previous page. Totally stumped here. Any help is greatly appreciated.

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

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

发布评论

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

评论(2

假面具 2024-10-17 01:36:59

解决此问题的一种方法是在查询字符串中传递参数:

  • 第一个链接:
    reader/index.html?func=function1
  • 第二个链接:
    reader/index.html?func=function2

您可以使用 这里

One way to solve this is to pass parameters in the query string:

  • First link:
    reader/index.html?func=function1
  • Second link:
    reader/index.html?func=function2

You can read a query string parameter in javascript by using a technique described here.

一身仙ぐ女味 2024-10-17 01:36:59

您需要通过声明到 reader/index.html。

You need to pass state to reader/index.html.

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