我有一个列表,每个 li 都有一个数据角色编号。如果任何一个孩子 li 的数据角色数超过 50,我需要做点什么
到目前为止有这个,但它不工作
$('ul.chart').each(function(i) {
var dataRole = $(this).data('role');
if ($(this).children(dataRole < 51)) {
alert('all of the children are below 50')
}else {
alert('one or more of the children are above 50')
}
});