<div id="cardSlots">
<div class="ui-droppable" tabindex="-1" id="card1">one</div>
<div class="ui-droppable" tabindex="-1" id="card2">two</div>
<div class="ui-droppable" tabindex="-1">three</div>
<div class="ui-droppable" tabindex="-1">four</div>
</div>
<script>
$(".ui-droppable").each(function () {
if($(this).attr("id").length>0)
{
alert('here');
}
});
</script>
我正在尝试遍历类,但问题是我在该页面中有重复的 card1 和 card2 id。但上面的代码似乎工作但显示以下错误。
Uncaught Type Error: Cannot read property 'length' of undefined
我正在尝试从那里的循环中获取 id。