我有一个像
这样的容器<div id="hoslist" class="hBlock" data-accredation-list=""
data-amenty-list="" data-room-list="1,2,3,4" data-loc-id="1">
每个data属性都可以包含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
答案 0 :(得分:1)
$( “hBlock”)ATTR( '数据室内列表'); //可能是解决方案