使用attr检索元素而不是设置attr

时间:2011-10-21 23:18:40

标签: javascript jquery zepto

使用此代码:$('#ipadmenu section').attr('data-order', hash)我将data-order属性设置为“hash”的值。如何选择具有该attr / value的元素而不是设置值?

谢谢你的帮助!

P.S。我使用的是zepto.js,不支持.prop()

2 个答案:

答案 0 :(得分:3)

With the attribute selector.

$("#ipadmenu section[data-order='" + hash + "']")

答案 1 :(得分:1)

简单。使用attribute selector$("#ipadmenu section[data-order='" + hash + "']")