gpt4 book ai didi

jQuery 从 url 哈希中查找属性

转载 作者:行者123 更新时间:2023-12-01 02:25:39 24 4
gpt4 key购买 nike

尝试从 url 哈希中查找属性值。

// URL
http://url.com/index.html#link

// HTML
<a href="#link" rel="3">Some link</a>

// JS
var anchor = window.location.hash.substring(1);
// Need help finding attribute value from finding the anchor
var attribute = .find('#+anchor').attr('rel'); //this needs to have a value of 3

感谢所有帮助。谢谢:)

最佳答案

您可以使用attribute-equals selector来做到这一点,像这样:

$('a[href="'+window.location.hash+'"]').attr("rel")

或者.filter() ,像这样:

$("a").filter(function() { return this.hash == location.hash; }).attr("rel")

.hash# 开头将保持一致,因此无需删除/添加回来,只需按原样使用即可。

关于jQuery 从 url 哈希中查找属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3885823/

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