书签内的 javascript 调用

发布于 2024-12-09 02:32:34 字数 285 浏览 0 评论 0原文

想知道是否可以在 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 技术交流群。

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

发布评论

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

评论(2

八巷 2024-12-16 02:32:34

既不具有可扩展性,也不优雅,但如果您检查

<script>
function myCallback()
{
    alert('movedhere');
}
</script>

<a href="#down" onclick="myCallback()">Go down</a>
.
.
.
<a name="down">

<script>
var frag = window.location.hash;
if (frag === '#down')
{
    myCallback();
}
</script>

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:

<script>
function myCallback()
{
    alert('movedhere');
}
</script>

<a href="#down" onclick="myCallback()">Go down</a>
.
.
.
<a name="down">

<script>
var frag = window.location.hash;
if (frag === '#down')
{
    myCallback();
}
</script>

https://developer.mozilla.org/en/window.location#Properties

小嗲 2024-12-16 02:32:34

不,您不能完全做到这一点,但您可以将脚本添加到实际链接中。

<a href="#down" onclick="alert('movedhere')">Go down</a>
.
.
.
<a name="down">

No, you can't do that exactly, but you can add the script to the actual link instead.

<a href="#down" onclick="alert('movedhere')">Go down</a>
.
.
.
<a name="down">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文