书签内的 javascript 调用
想知道是否可以在 html 书签内进行 javascript 调用,例如:
<a href="bookmark">Go down</a>
.
.
.
<a name="down" href="javascript:alert('movedhere')">
因此,当访问者单击“向下”时,会出现警报消息,而且当 url="/#bookmark"< /code> 然后再次调用该函数。
wondering if it is possible to have a javascript call inside a html bookmark like:
<a href="bookmark">Go down</a>
.
.
.
<a name="down" href="javascript:alert('movedhere')">
so when visitor clicks on "Go down" the alert message appears but also when url="/#bookmark"
then again the function is called.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它既不具有可扩展性,也不优雅,但如果您检查
https://developer.mozilla.org/en/window.location#Properties
It's neither scalable nor elegant but it would work if you checked the
fragment
of the current page when the page loads:https://developer.mozilla.org/en/window.location#Properties
不,您不能完全做到这一点,但您可以将脚本添加到实际链接中。
No, you can't do that exactly, but you can add the script to the actual link instead.