jQuery从url hash中查找属性

时间:2010-10-07 20:56:43

标签: jquery url hash attributes find

尝试从网址哈希中找到属性值。

// 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

所有帮助表示赞赏。谢谢:))

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');