如何在加载新的 HTML 页面后加载 js 函数?
我想知道是否有办法执行以下操作:
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决此问题的一种方法是在查询字符串中传递参数:
reader/index.html?func=function1
reader/index.html?func=function2
您可以使用 这里。
One way to solve this is to pass parameters in the query string:
reader/index.html?func=function1
reader/index.html?func=function2
You can read a query string parameter in javascript by using a technique described here.
您需要通过声明到 reader/index.html。
You need to pass state to reader/index.html.