我将 json 响应附加到 html 元素。代码很简单
HTML
<div>
<ul id='grid'></ul>
</div>
jQuery
data = ["Paintings",{ "age":0}]
$(function() {
$.each(data, function(i,index) {
$('div').find('ul').append('<li>'+index.age+'</li>');
});
});
输出看起来像这样
不明确的
0
undefined 来自哪里?
我尝试使用它来删除未定义的
$('#grid').children(':first-child').remove('li');
但它删除了“0”和未定义的。