尝试从网址哈希中找到属性值。
// 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
所有帮助表示赞赏。谢谢:))
答案 0 :(得分:7)
您可以使用attribute-equals selector执行此操作,如下所示:
$('a[href="'+window.location.hash+'"]').attr("rel")
或.filter()
,如下:
$("a").filter(function() { return this.hash == location.hash; }).attr("rel")
以#
开头的.hash
将保持一致,因此无需删除/添加此内容,只需按原样使用即可。
答案 1 :(得分:1)
$('a[href=' + window.location.hash +']').attr("rel");
答案 2 :(得分:0)
这是你需要的吗?
var attribute = $("a[href='#" + anchor + "']").attr('rel');