作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道客户端点击超链接并加载超链接后是否可以响应事件?哪个事件可以使用超链接中的属性(即 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/
我是一名优秀的程序员,十分优秀!