0

我有一个容器

<div id="hoslist" class="hBlock" data-accredation-list=""
data-amenty-list="" data-room-list="1,2,3,4" data-loc-id="1">

每个数据属性都可以有 csv 、Single 或 null 值。我正在尝试过滤那些在数据属性中具有匹配值的人。

<script>
$(document).ready(function(){
roomid=1;
var objlist=$("div[data-room-list]");
//this return all div[s] which have this attribute
//but i am not able to proceed beyond this. 

});
</script>

如何获取数据属性的 csv 值,

更新 :

$(".hBlock").data('data-room-list') //this gives me undefined
4

1 回答 1

1

$(".hBlock").attr('data-room-list'); // may be the solution

于 2013-08-27T11:16:24.013 回答