gpt4 book ai didi

javascript - anchor URL 访问时突出显示 anchor ID

转载 作者:行者123 更新时间:2023-11-30 08:44:44 26 4
gpt4 key购买 nike

编辑:

有人提到这在 CSS 中是可能的,所以我查了一下,这正是我所需要的!

CSS

You need to use the :target pseudo-class:

:target {
background-color: #ffa;
}

JS Fiddle demo.

Thanks David Thomas source


也感谢 MILIND,您的代码也是我所需要的


一段时间以来,我一直在努力解决这个问题。

当有人通过这样的 URL 访问我的页面时:

http://jsfiddle.net/maNR5/show/#second

我希望 id 为 second 的标题元素用背景颜色突出显示。

<div>

<h1><a id="first">How can I...</a></h1>

<h1><a id="second">...make this...</a></h1>

<h1><a id="turd">Highlighted when....</a></h1>

<h1><a id="furd">Visited by an...</a></h1>

<h1><a id="earth">Anchor URL</a></h1>


</div>

这在 javascript 中可行吗?感谢您提供任何提示。

最佳答案

尝试使用:

var hash = window.location.hash;
$('#'+hash).parent().css('background-color','red');

关于javascript - anchor URL 访问时突出显示 anchor ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23009299/

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