gpt4 book ai didi

javascript - 加载超链接页面后如何响应事件?

转载 作者:行者123 更新时间:2023-12-03 10:31:38 24 4
gpt4 key购买 nike

我想知道客户端点击超链接并加载超链接后是否可以响应事件?哪个事件可以使用超链接中的属性(即 id、class...等)?

例如,page_A有一个超链接

<a href="page_B" onclick="some_func">link</a>

但是由于 some_func 需要使用 page_B 中的一些属性,假设 page_B 有这一行

<p id="a">hello world</p>

并且 some_func 想要用它做一些事情(例如 document.getElementById("a")),我如何首先加载超链接(page_B)然后运行 ​​some_func?

最佳答案

您可以使用 localStorage 保存要在第二页上执行的函数的名称,并在加载后调用它。

代码如下:

JS

// a sample function to be called
function myFunc() {
alert("Called from previous page!");
}

// save the name of the function in the local storage
function saveForLater(func) {
localStorage.setItem("func", func);
}

// if the function exists
if (localStorage.func) {
// call it (not using the evil eval)
window[localStorage.func]();
// remove it from the storage so the next page doesn't execute it
localStorage.removeItem("func");
}

HTML(仅用于测试)

<a href="test2.html" onclick="saveForLater('myFunc')">Go to Page 2</a><br/>
<a href="test2.html">Go to Page 2 (not saving function)</a>

注意:由于此代码在客户端运行,因此可能会被用户更改,因此您必须小心如何继续和执行“已保存”功能,否则您可能会发现自己遇到安全问题.

关于javascript - 加载超链接页面后如何响应事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29181955/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com