这是我的问题的 html 部分
<DIV ID="CONTAINER">
<DIV CLASS="ITEMS">
Purchase
</DIV>
<DIV CLASS="ITEMS">
Return
</DIV>
<DIV CLASS="ITEMS">
On Hold
</DIV>
<DIV CLASS="ITEMS">
Exchange
</DIV>
</DIV>
jQuery
var MyArray = [];
var $Items = $('.ITEMS');
$Items.each(
function(){
Value = $.trim($(this).html());
MyArray.push(Value);
}
);
var Count_Parts = MyArray.length;
for (i = 1; i <= Count_Parts; i++ ){
console.log(MyArray[i]);
}
我的问题是控制台没有显示正确的结果我看到退货、暂停、交换、未定义.....它正在跳过购买并显示未定义?为什么购买未定义?